Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2023-0215 (GCVE-0-2023-0215)
Vulnerability from cvelistv5 – Published: 2023-02-08 19:03 – Updated: 2025-11-04 19:14- use-after-free
- CWE-416 - Use After Free
{
"containers": {
"adp": [
{
"providerMetadata": {
"dateUpdated": "2025-11-04T19:14:32.988Z",
"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=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd"
},
{
"name": "1.1.1t git commit",
"tags": [
"patch",
"x_transferred"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344"
},
{
"name": "1.0.2zg patch (premium)",
"tags": [
"patch",
"x_transferred"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb"
},
{
"tags": [
"x_transferred"
],
"url": "https://security.netapp.com/advisory/ntap-20230427-0007/"
},
{
"tags": [
"x_transferred"
],
"url": "https://security.netapp.com/advisory/ntap-20230427-0009/"
},
{
"tags": [
"x_transferred"
],
"url": "https://security.gentoo.org/glsa/202402-08"
},
{
"tags": [
"x_transferred"
],
"url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
},
{
"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-2023-0215",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2025-04-23T13:26:40.603939Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-416",
"description": "CWE-416 Use After Free",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-08-27T20:32:52.734Z",
"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"
},
{
"lessThan": "1.0.2zg",
"status": "affected",
"version": "1.0.2",
"versionType": "custom"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "reporter",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Octavio Galland (Max Planck Institute for Security and Privacy)"
},
{
"lang": "en",
"type": "reporter",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Marcel B\u00f6hme (Max Planck Institute for Security and Privacy)"
},
{
"lang": "en",
"type": "remediation developer",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Viktor Dukhovni"
},
{
"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 public API function BIO_new_NDEF is a helper function used for streaming\u003cbr\u003eASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\u003cbr\u003eSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\u003cbr\u003eend user applications.\u003cbr\u003e\u003cbr\u003eThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\u003cbr\u003eBIO onto the front of it to form a BIO chain, and then returns the new head of\u003cbr\u003ethe BIO chain to the caller. Under certain conditions, for example if a CMS\u003cbr\u003erecipient public key is invalid, the new filter BIO is freed and the function\u003cbr\u003ereturns a NULL result indicating a failure. However, in this case, the BIO chain\u003cbr\u003eis not properly cleaned up and the BIO passed by the caller still retains\u003cbr\u003einternal pointers to the previously freed filter BIO. If the caller then goes on\u003cbr\u003eto call BIO_pop() on the BIO then a use-after-free will occur. This will most\u003cbr\u003elikely result in a crash.\u003cbr\u003e\u003cdiv\u003e\u003cbr\u003e\u003c/div\u003e\u003cdiv\u003eThis scenario occurs directly in the internal function B64_write_ASN1() which\u003cbr\u003emay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\u003cbr\u003ethe BIO. This internal function is in turn called by the public API functions\u003cbr\u003ePEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\u003cbr\u003eSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\u003cbr\u003e\u003cbr\u003eOther public API functions that may be impacted by this include\u003cbr\u003ei2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\u003cbr\u003ei2d_PKCS7_bio_stream.\u003cbr\u003e\u003cbr\u003eThe OpenSSL cms and smime command line applications are similarly affected.\u003cbr\u003e\u003cbr\u003e\u003c/div\u003e"
}
],
"value": "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."
}
],
"metrics": [
{
"format": "other",
"other": {
"content": {
"text": "Moderate"
},
"type": "https://www.openssl.org/policies/secpolicy.html"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"description": "use-after-free",
"lang": "en"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2024-06-21T19:07:45.229Z",
"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=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd"
},
{
"name": "1.1.1t git commit",
"tags": [
"patch"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344"
},
{
"name": "1.0.2zg patch (premium)",
"tags": [
"patch"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb"
},
{
"url": "https://security.netapp.com/advisory/ntap-20230427-0007/"
},
{
"url": "https://security.netapp.com/advisory/ntap-20230427-0009/"
},
{
"url": "https://security.gentoo.org/glsa/202402-08"
},
{
"url": "https://security.netapp.com/advisory/ntap-20240621-0006/"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Use-after-free following BIO_new_NDEF",
"x_generator": {
"engine": "Vulnogram 0.1.0-dev"
}
}
},
"cveMetadata": {
"assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"assignerShortName": "openssl",
"cveId": "CVE-2023-0215",
"datePublished": "2023-02-08T19:03:28.691Z",
"dateReserved": "2023-01-11T11:59:16.647Z",
"dateUpdated": "2025-11-04T19:14:32.988Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2023-0215",
"date": "2026-06-07",
"epss": "0.0043",
"percentile": "0.62897"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2023-0215\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2023-02-08T20:15:24.107\",\"lastModified\":\"2025-11-04T20:16:15.847\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"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.\"}],\"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-416\"}]},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-416\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"1.0.2\",\"versionEndExcluding\":\"1.0.2zg\",\"matchCriteriaId\":\"70985D55-A574-4151-B451-4D500CBFC29A\"},{\"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_management_center:*:*:*:*:*:*:*:*\",\"versionEndExcluding\":\"3.3.3\",\"matchCriteriaId\":\"62A933C5-C56E-485C-AD49-3B6A2C329131\"}]}]}],\"references\":[{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://security.gentoo.org/glsa/202402-08\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://security.netapp.com/advisory/ntap-20230427-0007/\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Third Party Advisory\"]},{\"url\":\"https://security.netapp.com/advisory/ntap-20230427-0009/\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Third Party Advisory\"]},{\"url\":\"https://security.netapp.com/advisory/ntap-20240621-0006/\",\"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=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344\",\"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://security.netapp.com/advisory/ntap-20230427-0007/\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Third Party Advisory\"]},{\"url\":\"https://security.netapp.com/advisory/ntap-20230427-0009/\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Third Party Advisory\"]},{\"url\":\"https://security.netapp.com/advisory/ntap-20240621-0006/\",\"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=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd\", \"name\": \"3.0.8 git commit\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344\", \"name\": \"1.1.1t git commit\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb\", \"name\": \"1.0.2zg patch (premium)\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://security.netapp.com/advisory/ntap-20230427-0007/\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://security.netapp.com/advisory/ntap-20230427-0009/\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://security.netapp.com/advisory/ntap-20240621-0006/\", \"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:32.988Z\"}}, {\"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-2023-0215\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2025-04-23T13:26:40.603939Z\"}}}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-416\", \"description\": \"CWE-416 Use After Free\"}]}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2025-05-05T13:07:13.819Z\"}}], \"cna\": {\"title\": \"Use-after-free following BIO_new_NDEF\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"reporter\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Octavio Galland (Max Planck Institute for Security and Privacy)\"}, {\"lang\": \"en\", \"type\": \"reporter\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Marcel B\\u00f6hme (Max Planck Institute for Security and Privacy)\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Viktor Dukhovni\"}, {\"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\"}, {\"status\": \"affected\", \"version\": \"1.0.2\", \"lessThan\": \"1.0.2zg\", \"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=8818064ce3c3c0f1b740a5aaba2a987e75bfbafd\", \"name\": \"3.0.8 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=c3829dd8825c654652201e16f8a0a0c46ee3f344\", \"name\": \"1.1.1t git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=9816136fe31d92ace4037d5da5257f763aeeb4eb\", \"name\": \"1.0.2zg patch (premium)\", \"tags\": [\"patch\"]}, {\"url\": \"https://security.netapp.com/advisory/ntap-20230427-0007/\"}, {\"url\": \"https://security.netapp.com/advisory/ntap-20230427-0009/\"}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\"}, {\"url\": \"https://security.netapp.com/advisory/ntap-20240621-0006/\"}], \"x_generator\": {\"engine\": \"Vulnogram 0.1.0-dev\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"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.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"The public API function BIO_new_NDEF is a helper function used for streaming\u003cbr\u003eASN.1 data via a BIO. It is primarily used internally to OpenSSL to support the\u003cbr\u003eSMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by\u003cbr\u003eend user applications.\u003cbr\u003e\u003cbr\u003eThe function receives a BIO from the caller, prepends a new BIO_f_asn1 filter\u003cbr\u003eBIO onto the front of it to form a BIO chain, and then returns the new head of\u003cbr\u003ethe BIO chain to the caller. Under certain conditions, for example if a CMS\u003cbr\u003erecipient public key is invalid, the new filter BIO is freed and the function\u003cbr\u003ereturns a NULL result indicating a failure. However, in this case, the BIO chain\u003cbr\u003eis not properly cleaned up and the BIO passed by the caller still retains\u003cbr\u003einternal pointers to the previously freed filter BIO. If the caller then goes on\u003cbr\u003eto call BIO_pop() on the BIO then a use-after-free will occur. This will most\u003cbr\u003elikely result in a crash.\u003cbr\u003e\u003cdiv\u003e\u003cbr\u003e\u003c/div\u003e\u003cdiv\u003eThis scenario occurs directly in the internal function B64_write_ASN1() which\u003cbr\u003emay cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on\u003cbr\u003ethe BIO. This internal function is in turn called by the public API functions\u003cbr\u003ePEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream,\u003cbr\u003eSMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7.\u003cbr\u003e\u003cbr\u003eOther public API functions that may be impacted by this include\u003cbr\u003ei2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and\u003cbr\u003ei2d_PKCS7_bio_stream.\u003cbr\u003e\u003cbr\u003eThe OpenSSL cms and smime command line applications are similarly affected.\u003cbr\u003e\u003cbr\u003e\u003c/div\u003e\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"description\": \"use-after-free\"}]}], \"providerMetadata\": {\"orgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"shortName\": \"openssl\", \"dateUpdated\": \"2024-06-21T19:07:45.229Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2023-0215\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-11-04T19:14:32.988Z\", \"dateReserved\": \"2023-01-11T11:59:16.647Z\", \"assignerOrgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"datePublished\": \"2023-02-08T19:03:28.691Z\", \"assignerShortName\": \"openssl\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
NCSC-2025-0061
Vulnerability from csaf_ncscnl - Published: 2025-02-14 08:46 - Updated: 2025-02-14 08:46| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
apogee_pxc_series__bacnet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*
|
— | |
|
apogee_pxc_series__p2_ethernet_
siemens
|
cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*
|
— | |
|
opcenter_intelligence
siemens
|
cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*
|
— | |
|
ruggedcom
siemens
|
cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*
|
— | |
|
scalance
siemens
|
cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*
|
— | |
|
_simatic_s7
siemens
|
cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
_simatic
siemens
|
cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*
|
— | |
|
simatic_s7
siemens
|
cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*
|
— | |
|
simatic
siemens
|
cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*
|
— | |
|
siprotec
siemens
|
cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*
|
— | |
|
teamcenter
siemens
|
cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*
|
— |
{
"document": {
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE"
}
},
"lang": "nl",
"notes": [
{
"category": "legal_disclaimer",
"text": "The Netherlands Cyber Security Center (henceforth: NCSC-NL) maintains this page to enhance access to its information and security advisories. The use of this security advisory is subject to the following terms and conditions:\n\n NCSC-NL makes every reasonable effort to ensure that the content of this page is kept up to date, and that it is accurate and complete. Nevertheless, NCSC-NL cannot entirely rule out the possibility of errors, and therefore cannot give any warranty in respect of its completeness, accuracy or continuous keeping up-to-date. The information contained in this security advisory is intended solely for the purpose of providing general information to professional users. No rights can be derived from the information provided therein.\n\n NCSC-NL and the Kingdom of the Netherlands assume no legal liability or responsibility for any damage resulting from either the use or inability of use of this security advisory. This includes damage resulting from the inaccuracy of incompleteness of the information contained in the advisory.\n This security advisory is subject to Dutch law. All disputes related to or arising from the use of this advisory will be submitted to the competent court in The Hague. This choice of means also applies to the court in summary proceedings."
},
{
"category": "description",
"text": "Siemens heeft kwetsbaarheden verholpen in diverse producten als APOGEE, Opcenter, RUGGEDCOM, SCALANCE, SIMATIC, SIPROTEC en Teamcenter.",
"title": "Feiten"
},
{
"category": "description",
"text": "De kwetsbaarheden stellen een kwaadwillende mogelijk in staat aanvallen uit te voeren die kunnen leiden tot de volgende categorie\u00ebn schade:\n\n- Denial-of-Service (DoS)\n- Cross-Site-Scripting (XSS)\n- Cross-Site Request Forgery (CSRF)\n- Manipulatie van gegevens\n- Omzeilen van een beveiligingsmaatregel\n- Omzeilen van authenticatie\n- (Remote) code execution (root/admin rechten)\n- (Remote) code execution (Gebruikersrechten)\n- Toegang tot systeemgegevens\n- Toegang tot gevoelige gegevens\n\nDe kwaadwillende heeft hiervoor toegang nodig tot de productieomgeving. Het is goed gebruik een dergelijke omgeving niet publiek toegankelijk te hebben.",
"title": "Interpretaties"
},
{
"category": "description",
"text": "Siemens heeft beveiligingsupdates uitgebracht om de kwetsbaarheden te verhelpen. Voor de kwetsbaarheden waar nog geen updates voor zijn, heeft Siemens mitigerende maatregelen gepubliceerd om de risico\u0027s zoveel als mogelijk te beperken. Zie de bijgevoegde referenties voor meer informatie.",
"title": "Oplossingen"
},
{
"category": "general",
"text": "medium",
"title": "Kans"
},
{
"category": "general",
"text": "high",
"title": "Schade"
},
{
"category": "general",
"text": "Use of a Cryptographic Primitive with a Risky Implementation",
"title": "CWE-1240"
},
{
"category": "general",
"text": "Improperly Controlled Sequential Memory Allocation",
"title": "CWE-1325"
},
{
"category": "general",
"text": "Incorrect Pointer Scaling",
"title": "CWE-468"
},
{
"category": "general",
"text": "Unchecked Input for Loop Condition",
"title": "CWE-606"
},
{
"category": "general",
"text": "Permissive List of Allowed Inputs",
"title": "CWE-183"
},
{
"category": "general",
"text": "Covert Timing Channel",
"title": "CWE-385"
},
{
"category": "general",
"text": "Dependency on Vulnerable Third-Party Component",
"title": "CWE-1395"
},
{
"category": "general",
"text": "Improper Null Termination",
"title": "CWE-170"
},
{
"category": "general",
"text": "Active Debug Code",
"title": "CWE-489"
},
{
"category": "general",
"text": "Use of Default Credentials",
"title": "CWE-1392"
},
{
"category": "general",
"text": "Truncation of Security-relevant Information",
"title": "CWE-222"
},
{
"category": "general",
"text": "CWE-310",
"title": "CWE-310"
},
{
"category": "general",
"text": "Use of Weak Hash",
"title": "CWE-328"
},
{
"category": "general",
"text": "Missing Critical Step in Authentication",
"title": "CWE-304"
},
{
"category": "general",
"text": "Incorrect Provision of Specified Functionality",
"title": "CWE-684"
},
{
"category": "general",
"text": "Observable Timing Discrepancy",
"title": "CWE-208"
},
{
"category": "general",
"text": "Inadequate Encryption Strength",
"title": "CWE-326"
},
{
"category": "general",
"text": "Improper Restriction of Communication Channel to Intended Endpoints",
"title": "CWE-923"
},
{
"category": "general",
"text": "Insertion of Sensitive Information Into Sent Data",
"title": "CWE-201"
},
{
"category": "general",
"text": "Improper Verification of Cryptographic Signature",
"title": "CWE-347"
},
{
"category": "general",
"text": "Excessive Iteration",
"title": "CWE-834"
},
{
"category": "general",
"text": "Incorrect Permission Assignment for Critical Resource",
"title": "CWE-732"
},
{
"category": "general",
"text": "Direct Request (\u0027Forced Browsing\u0027)",
"title": "CWE-425"
},
{
"category": "general",
"text": "Expected Behavior Violation",
"title": "CWE-440"
},
{
"category": "general",
"text": "Incorrect Type Conversion or Cast",
"title": "CWE-704"
},
{
"category": "general",
"text": "Double Free",
"title": "CWE-415"
},
{
"category": "general",
"text": "Improper Validation of Syntactic Correctness of Input",
"title": "CWE-1286"
},
{
"category": "general",
"text": "Improper Check for Unusual or Exceptional Conditions",
"title": "CWE-754"
},
{
"category": "general",
"text": "Uncontrolled Search Path Element",
"title": "CWE-427"
},
{
"category": "general",
"text": "URL Redirection to Untrusted Site (\u0027Open Redirect\u0027)",
"title": "CWE-601"
},
{
"category": "general",
"text": "Externally Controlled Reference to a Resource in Another Sphere",
"title": "CWE-610"
},
{
"category": "general",
"text": "Insufficient Session Expiration",
"title": "CWE-613"
},
{
"category": "general",
"text": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)",
"title": "CWE-843"
},
{
"category": "general",
"text": "Cleartext Storage of Sensitive Information",
"title": "CWE-312"
},
{
"category": "general",
"text": "Divide By Zero",
"title": "CWE-369"
},
{
"category": "general",
"text": "Unchecked Return Value",
"title": "CWE-252"
},
{
"category": "general",
"text": "Observable Discrepancy",
"title": "CWE-203"
},
{
"category": "general",
"text": "Improper Validation of Integrity Check Value",
"title": "CWE-354"
},
{
"category": "general",
"text": "Missing Cryptographic Step",
"title": "CWE-325"
},
{
"category": "general",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
},
{
"category": "general",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
},
{
"category": "general",
"text": "Out-of-bounds Read",
"title": "CWE-125"
},
{
"category": "general",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "general",
"text": "Improper Access Control",
"title": "CWE-284"
},
{
"category": "general",
"text": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
},
{
"category": "general",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "general",
"text": "Use After Free",
"title": "CWE-416"
},
{
"category": "general",
"text": "Improper Neutralization of CRLF Sequences in HTTP Headers (\u0027HTTP Request/Response Splitting\u0027)",
"title": "CWE-113"
},
{
"category": "general",
"text": "Missing Release of Memory after Effective Lifetime",
"title": "CWE-401"
},
{
"category": "general",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
},
{
"category": "general",
"text": "Improper Certificate Validation",
"title": "CWE-295"
},
{
"category": "general",
"text": "Selection of Less-Secure Algorithm During Negotiation (\u0027Algorithm Downgrade\u0027)",
"title": "CWE-757"
},
{
"category": "general",
"text": "Use of a Broken or Risky Cryptographic Algorithm",
"title": "CWE-327"
},
{
"category": "general",
"text": "Interpretation Conflict",
"title": "CWE-436"
},
{
"category": "general",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
}
],
"publisher": {
"category": "coordinator",
"contact_details": "cert@ncsc.nl",
"name": "Nationaal Cyber Security Centrum",
"namespace": "https://www.ncsc.nl/"
},
"references": [
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-111547.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-195895.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-224824.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-246355.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-342348.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-369369.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-615116.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-637914.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-647005.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-656895.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-687955.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-767615.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-769027.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-770770.pdf"
}
],
"title": "Kwetsbaarheden verholpen in Siemens producten",
"tracking": {
"current_release_date": "2025-02-14T08:46:28.240775Z",
"id": "NCSC-2025-0061",
"initial_release_date": "2025-02-14T08:46:28.240775Z",
"revision_history": [
{
"date": "2025-02-14T08:46:28.240775Z",
"number": "0",
"summary": "Initiele versie"
}
],
"status": "final",
"version": "1.0.0"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "apogee_pxc_series__bacnet_",
"product": {
"name": "apogee_pxc_series__bacnet_",
"product_id": "CSAFPID-1702551",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:apogee_pxc_series__bacnet_:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "apogee_pxc_series__p2_ethernet_",
"product": {
"name": "apogee_pxc_series__p2_ethernet_",
"product_id": "CSAFPID-1702739",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:apogee_pxc_series__p2_ethernet_:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "opcenter_intelligence",
"product": {
"name": "opcenter_intelligence",
"product_id": "CSAFPID-1702007",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:opcenter_intelligence:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "opcenter_intelligence",
"product": {
"name": "opcenter_intelligence",
"product_id": "CSAFPID-1767245",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:opcenter_intelligence:2501:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "ruggedcom",
"product": {
"name": "ruggedcom",
"product_id": "CSAFPID-342615",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:ruggedcom:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "scalance",
"product": {
"name": "scalance",
"product_id": "CSAFPID-1769354",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:scalance:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "_simatic_s7",
"product": {
"name": "_simatic_s7",
"product_id": "CSAFPID-1769355",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:_simatic_s7:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "_simatic",
"product": {
"name": "_simatic",
"product_id": "CSAFPID-1769356",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:_simatic:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "simatic_s7",
"product": {
"name": "simatic_s7",
"product_id": "CSAFPID-1751507",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:simatic_s7:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "simatic",
"product": {
"name": "simatic",
"product_id": "CSAFPID-166121",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:simatic:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "siprotec",
"product": {
"name": "siprotec",
"product_id": "CSAFPID-1750039",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:siprotec:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "teamcenter",
"product": {
"name": "teamcenter",
"product_id": "CSAFPID-538462",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:teamcenter:*:*:*:*:*:*:*:*"
}
}
}
],
"category": "vendor",
"name": "siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-46665",
"cwe": {
"id": "CWE-201",
"name": "Insertion of Sensitive Information Into Sent Data"
},
"notes": [
{
"category": "other",
"text": "Insertion of Sensitive Information Into Sent Data",
"title": "CWE-201"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-46665",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-46665.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 3.7,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N/E:P/RL:X/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-46665"
},
{
"cve": "CVE-2024-46666",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"notes": [
{
"category": "other",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-46666",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-46666.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-46666"
},
{
"cve": "CVE-2024-46668",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"notes": [
{
"category": "other",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-46668",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-46668.json"
}
],
"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/E:P/RL:U/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-46668"
},
{
"cve": "CVE-2024-46669",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "other",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-46669",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-46669.json"
}
],
"title": "CVE-2024-46669"
},
{
"cve": "CVE-2024-46670",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-46670",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-46670.json"
}
],
"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/E:X/RL:X/RC:X",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-46670"
},
{
"cve": "CVE-2024-48884",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)",
"title": "CWE-22"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-48884",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-48884.json"
}
],
"title": "CVE-2024-48884"
},
{
"cve": "CVE-2024-48885",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)",
"title": "CWE-22"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-48885",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-48885.json"
}
],
"title": "CVE-2024-48885"
},
{
"cve": "CVE-2024-50560",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-50560",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-50560.json"
}
],
"title": "CVE-2024-50560"
},
{
"cve": "CVE-2024-50561",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)",
"title": "CWE-79"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-50561",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-50561.json"
}
],
"title": "CVE-2024-50561"
},
{
"cve": "CVE-2024-50572",
"cwe": {
"id": "CWE-74",
"name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)",
"title": "CWE-74"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-50572",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-50572.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-50572"
},
{
"cve": "CVE-2024-52963",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-52963",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-52963.json"
}
],
"title": "CVE-2024-52963"
},
{
"cve": "CVE-2024-53648",
"cwe": {
"id": "CWE-489",
"name": "Active Debug Code"
},
"notes": [
{
"category": "other",
"text": "Active Debug Code",
"title": "CWE-489"
},
{
"category": "general",
"text": "CVSS:4.0/AV:P/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-53648",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-53648.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-53648"
},
{
"cve": "CVE-2024-53651",
"cwe": {
"id": "CWE-312",
"name": "Cleartext Storage of Sensitive Information"
},
"notes": [
{
"category": "other",
"text": "Cleartext Storage of Sensitive Information",
"title": "CWE-312"
},
{
"category": "general",
"text": "CVSS:4.0/AV:P/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-53651",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-53651.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.6,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-53651"
},
{
"cve": "CVE-2024-53977",
"cwe": {
"id": "CWE-427",
"name": "Uncontrolled Search Path Element"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Search Path Element",
"title": "CWE-427"
},
{
"category": "general",
"text": "CVSS:4.0/AV:L/AC:H/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-53977",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-53977.json"
}
],
"title": "CVE-2024-53977"
},
{
"cve": "CVE-2024-54015",
"cwe": {
"id": "CWE-1392",
"name": "Use of Default Credentials"
},
"notes": [
{
"category": "other",
"text": "Use of Default Credentials",
"title": "CWE-1392"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-54015",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-54015.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-54015"
},
{
"cve": "CVE-2024-54021",
"cwe": {
"id": "CWE-113",
"name": "Improper Neutralization of CRLF Sequences in HTTP Headers (\u0027HTTP Request/Response Splitting\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Neutralization of CRLF Sequences in HTTP Headers (\u0027HTTP Request/Response Splitting\u0027)",
"title": "CWE-113"
},
{
"category": "other",
"text": "Interpretation Conflict",
"title": "CWE-436"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-54021",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-54021.json"
}
],
"title": "CVE-2024-54021"
},
{
"cve": "CVE-2024-54089",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "other",
"text": "Inadequate Encryption Strength",
"title": "CWE-326"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-54089",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-54089.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-54089"
},
{
"cve": "CVE-2024-54090",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-54090",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-54090.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-54090"
},
{
"cve": "CVE-2025-23363",
"cwe": {
"id": "CWE-601",
"name": "URL Redirection to Untrusted Site (\u0027Open Redirect\u0027)"
},
"notes": [
{
"category": "other",
"text": "URL Redirection to Untrusted Site (\u0027Open Redirect\u0027)",
"title": "CWE-601"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:L/VA:N/SC:H/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-23363",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-23363.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.4,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2025-23363"
},
{
"cve": "CVE-2025-23403",
"cwe": {
"id": "CWE-732",
"name": "Incorrect Permission Assignment for Critical Resource"
},
"notes": [
{
"category": "other",
"text": "Incorrect Permission Assignment for Critical Resource",
"title": "CWE-732"
},
{
"category": "general",
"text": "CVSS:4.0/AV:L/AC:H/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-23403",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-23403.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.0,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2025-23403"
},
{
"cve": "CVE-2025-24499",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-24499",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-24499.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2025-24499"
},
{
"cve": "CVE-2025-24532",
"cwe": {
"id": "CWE-284",
"name": "Improper Access Control"
},
"notes": [
{
"category": "other",
"text": "Improper Access Control",
"title": "CWE-284"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-24532",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-24532.json"
}
],
"title": "CVE-2025-24532"
},
{
"cve": "CVE-2025-24811",
"cwe": {
"id": "CWE-404",
"name": "Improper Resource Shutdown or Release"
},
"notes": [
{
"category": "other",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-24811",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-24811.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2025-24811"
},
{
"cve": "CVE-2025-24812",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"notes": [
{
"category": "other",
"text": "Improper Validation of Syntactic Correctness of Input",
"title": "CWE-1286"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-24812",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-24812.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2025-24812"
},
{
"cve": "CVE-2025-24956",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"notes": [
{
"category": "other",
"text": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)",
"title": "CWE-120"
},
{
"category": "general",
"text": "CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-24956",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2025/CVE-2025-24956.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2025-24956"
},
{
"cve": "CVE-2022-2588",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-2588",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-2588.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-2588"
},
{
"cve": "CVE-2022-2663",
"cwe": {
"id": "CWE-923",
"name": "Improper Restriction of Communication Channel to Intended Endpoints"
},
"notes": [
{
"category": "other",
"text": "Improper Restriction of Communication Channel to Intended Endpoints",
"title": "CWE-923"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-2663",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-2663.json"
}
],
"title": "CVE-2022-2663"
},
{
"cve": "CVE-2022-3524",
"cwe": {
"id": "CWE-404",
"name": "Improper Resource Shutdown or Release"
},
"notes": [
{
"category": "other",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "other",
"text": "Missing Release of Memory after Effective Lifetime",
"title": "CWE-401"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-3524",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-3524.json"
}
],
"title": "CVE-2022-3524"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "other",
"text": "Inadequate Encryption Strength",
"title": "CWE-326"
},
{
"category": "other",
"text": "Observable Timing Discrepancy",
"title": "CWE-208"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-4304",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-4304.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "other",
"text": "Double Free",
"title": "CWE-415"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-4450",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-4450.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-22127",
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-22127",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-22127.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-22127"
},
{
"cve": "CVE-2022-22128",
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-22128",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-22128.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.0,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-22128"
},
{
"cve": "CVE-2022-39188",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
},
{
"category": "other",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-39188",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-39188.json"
}
],
"title": "CVE-2022-39188"
},
{
"cve": "CVE-2022-39842",
"cwe": {
"id": "CWE-122",
"name": "Heap-based Buffer Overflow"
},
"notes": [
{
"category": "other",
"text": "Heap-based Buffer Overflow",
"title": "CWE-122"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-39842",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-39842.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-39842"
},
{
"cve": "CVE-2022-40303",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "other",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-40303",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-40303.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "other",
"text": "Double Free",
"title": "CWE-415"
},
{
"category": "other",
"text": "Improper Restriction of XML External Entity Reference",
"title": "CWE-611"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-40304",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-40304.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-43750",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-43750",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-43750.json"
}
],
"title": "CVE-2022-43750"
},
{
"cve": "CVE-2022-47069",
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-47069",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-47069.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-47069"
},
{
"cve": "CVE-2022-47929",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-47929",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-47929.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2022-47929"
},
{
"cve": "CVE-2023-0045",
"cwe": {
"id": "CWE-610",
"name": "Externally Controlled Reference to a Resource in Another Sphere"
},
"notes": [
{
"category": "other",
"text": "Externally Controlled Reference to a Resource in Another Sphere",
"title": "CWE-610"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0045",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0045.json"
}
],
"title": "CVE-2023-0045"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0215",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0215.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"notes": [
{
"category": "other",
"text": "Incorrect Type Conversion or Cast",
"title": "CWE-704"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)",
"title": "CWE-843"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0286",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0286.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0464",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Certificate Validation",
"title": "CWE-295"
},
{
"category": "other",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Improper Verification of Cryptographic Signature",
"title": "CWE-347"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0464",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0464.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0465",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Certificate Validation",
"title": "CWE-295"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0465",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0465.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0466",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Certificate Validation",
"title": "CWE-295"
},
{
"category": "other",
"text": "Improper Verification of Cryptographic Signature",
"title": "CWE-347"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0466",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0466.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-0590",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-0590",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0590.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.0,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-0590"
},
{
"cve": "CVE-2023-1073",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-1073",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1073.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.6,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:P/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-1073"
},
{
"cve": "CVE-2023-1074",
"cwe": {
"id": "CWE-401",
"name": "Missing Release of Memory after Effective Lifetime"
},
"notes": [
{
"category": "other",
"text": "Missing Release of Memory after Effective Lifetime",
"title": "CWE-401"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-1074",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1074.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-1074"
},
{
"cve": "CVE-2023-1118",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-1118",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1118.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-1118"
},
{
"cve": "CVE-2023-1206",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-1206",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1206.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-1206"
},
{
"cve": "CVE-2023-1380",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-1380",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1380.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-1380"
},
{
"cve": "CVE-2023-1670",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-1670",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1670.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-1670"
},
{
"cve": "CVE-2023-2194",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-2194",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-2194.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-2194"
},
{
"cve": "CVE-2023-3446",
"cwe": {
"id": "CWE-404",
"name": "Improper Resource Shutdown or Release"
},
"notes": [
{
"category": "other",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "other",
"text": "Unchecked Input for Loop Condition",
"title": "CWE-606"
},
{
"category": "other",
"text": "Use of a Cryptographic Primitive with a Risky Implementation",
"title": "CWE-1240"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-3446",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-3446.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-3446"
},
{
"cve": "CVE-2023-3611",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-3611",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-3611.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-3611"
},
{
"cve": "CVE-2023-4623",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-4623",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-4623.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-4623"
},
{
"cve": "CVE-2023-4921",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-4921",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-4921.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-4921"
},
{
"cve": "CVE-2023-5363",
"cwe": {
"id": "CWE-325",
"name": "Missing Cryptographic Step"
},
"notes": [
{
"category": "other",
"text": "Missing Cryptographic Step",
"title": "CWE-325"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Incorrect Provision of Specified Functionality",
"title": "CWE-684"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-5363",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-5363.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-5363"
},
{
"cve": "CVE-2023-5678",
"cwe": {
"id": "CWE-754",
"name": "Improper Check for Unusual or Exceptional Conditions"
},
"notes": [
{
"category": "other",
"text": "Improper Check for Unusual or Exceptional Conditions",
"title": "CWE-754"
},
{
"category": "other",
"text": "Missing Cryptographic Step",
"title": "CWE-325"
},
{
"category": "other",
"text": "Unchecked Input for Loop Condition",
"title": "CWE-606"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-5678",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-5678.json"
}
],
"title": "CVE-2023-5678"
},
{
"cve": "CVE-2023-5717",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-5717",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-5717.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-5717"
},
{
"cve": "CVE-2023-6129",
"cwe": {
"id": "CWE-328",
"name": "Use of Weak Hash"
},
"notes": [
{
"category": "other",
"text": "Use of Weak Hash",
"title": "CWE-328"
},
{
"category": "other",
"text": "Expected Behavior Violation",
"title": "CWE-440"
},
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Use of a Broken or Risky Cryptographic Algorithm",
"title": "CWE-327"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-6129",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-6129.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-6129"
},
{
"cve": "CVE-2023-6237",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Unchecked Input for Loop Condition",
"title": "CWE-606"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-6237",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-6237.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-6237"
},
{
"cve": "CVE-2023-7250",
"cwe": {
"id": "CWE-183",
"name": "Permissive List of Allowed Inputs"
},
"notes": [
{
"category": "other",
"text": "Permissive List of Allowed Inputs",
"title": "CWE-183"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-7250",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-7250.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-7250"
},
{
"cve": "CVE-2023-23454",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "other",
"text": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)",
"title": "CWE-843"
},
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-23454",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-23454.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-23454"
},
{
"cve": "CVE-2023-23455",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "other",
"text": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)",
"title": "CWE-843"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-23455",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-23455.json"
}
],
"title": "CVE-2023-23455"
},
{
"cve": "CVE-2023-23559",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "other",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-23559",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-23559.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-23559"
},
{
"cve": "CVE-2023-26545",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "other",
"text": "Double Free",
"title": "CWE-415"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-26545",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-26545.json"
}
],
"title": "CVE-2023-26545"
},
{
"cve": "CVE-2023-28484",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-28484",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-28484.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-28484"
},
{
"cve": "CVE-2023-28578",
"cwe": {
"id": "CWE-119",
"name": "Improper Restriction of Operations within the Bounds of a Memory Buffer"
},
"notes": [
{
"category": "other",
"text": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-28578",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-28578.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.3,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-28578"
},
{
"cve": "CVE-2023-29469",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Double Free",
"title": "CWE-415"
},
{
"category": "other",
"text": "Improper Null Termination",
"title": "CWE-170"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-29469",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-29469.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-29469"
},
{
"cve": "CVE-2023-31085",
"cwe": {
"id": "CWE-369",
"name": "Divide By Zero"
},
"notes": [
{
"category": "other",
"text": "Divide By Zero",
"title": "CWE-369"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-31085",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-31085.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-31085"
},
{
"cve": "CVE-2023-31315",
"notes": [
{
"category": "general",
"text": "CVSS:4.0/AV:L/AC:H/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-31315",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-31315.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-31315"
},
{
"cve": "CVE-2023-35001",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
},
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Incorrect Pointer Scaling",
"title": "CWE-468"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-35001",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35001.json"
}
],
"title": "CVE-2023-35001"
},
{
"cve": "CVE-2023-37482",
"cwe": {
"id": "CWE-203",
"name": "Observable Discrepancy"
},
"notes": [
{
"category": "other",
"text": "Observable Discrepancy",
"title": "CWE-203"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-37482",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-37482.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-37482"
},
{
"cve": "CVE-2023-39192",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-39192",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-39192.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-39192"
},
{
"cve": "CVE-2023-39193",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-39193",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-39193.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:L",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-39193"
},
{
"cve": "CVE-2023-42754",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-42754",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-42754.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-42754"
},
{
"cve": "CVE-2023-43522",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-43522",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-43522.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-43522"
},
{
"cve": "CVE-2023-44320",
"cwe": {
"id": "CWE-425",
"name": "Direct Request (\u0027Forced Browsing\u0027)"
},
"notes": [
{
"category": "other",
"text": "Direct Request (\u0027Forced Browsing\u0027)",
"title": "CWE-425"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-44320",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44320.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-44320"
},
{
"cve": "CVE-2023-44322",
"cwe": {
"id": "CWE-252",
"name": "Unchecked Return Value"
},
"notes": [
{
"category": "other",
"text": "Unchecked Return Value",
"title": "CWE-252"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-44322",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44322.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 3.7,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-44322"
},
{
"cve": "CVE-2023-45853",
"cwe": {
"id": "CWE-122",
"name": "Heap-based Buffer Overflow"
},
"notes": [
{
"category": "other",
"text": "Heap-based Buffer Overflow",
"title": "CWE-122"
},
{
"category": "other",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-45853",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-45853.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-45853"
},
{
"cve": "CVE-2023-45863",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-45863",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-45863.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-45863"
},
{
"cve": "CVE-2023-46604",
"cwe": {
"id": "CWE-502",
"name": "Deserialization of Untrusted Data"
},
"notes": [
{
"category": "other",
"text": "Deserialization of Untrusted Data",
"title": "CWE-502"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-46604",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-46604.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 10.0,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-46604"
},
{
"cve": "CVE-2023-48795",
"cwe": {
"id": "CWE-222",
"name": "Truncation of Security-relevant Information"
},
"notes": [
{
"category": "other",
"text": "Truncation of Security-relevant Information",
"title": "CWE-222"
},
{
"category": "other",
"text": "Selection of Less-Secure Algorithm During Negotiation (\u0027Algorithm Downgrade\u0027)",
"title": "CWE-757"
},
{
"category": "other",
"text": "Improper Validation of Integrity Check Value",
"title": "CWE-354"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-48795",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-48795.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-48795"
},
{
"cve": "CVE-2023-51384",
"cwe": {
"id": "CWE-304",
"name": "Missing Critical Step in Authentication"
},
"notes": [
{
"category": "other",
"text": "Missing Critical Step in Authentication",
"title": "CWE-304"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-51384",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-51384.json"
}
],
"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:H/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-51384"
},
{
"cve": "CVE-2023-51385",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)",
"title": "CWE-78"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2023-51385",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-51385.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2023-51385"
},
{
"cve": "CVE-2024-0727",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-0727",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-0727.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-0727"
},
{
"cve": "CVE-2024-2511",
"cwe": {
"id": "CWE-404",
"name": "Improper Resource Shutdown or Release"
},
"notes": [
{
"category": "other",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Improperly Controlled Sequential Memory Allocation",
"title": "CWE-1325"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-2511",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-2511.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-2511"
},
{
"cve": "CVE-2024-4603",
"cwe": {
"id": "CWE-606",
"name": "Unchecked Input for Loop Condition"
},
"notes": [
{
"category": "other",
"text": "Unchecked Input for Loop Condition",
"title": "CWE-606"
},
{
"category": "other",
"text": "Excessive Iteration",
"title": "CWE-834"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-4603",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-4603.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-4603"
},
{
"cve": "CVE-2024-4741",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-4741",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-4741.json"
}
],
"title": "CVE-2024-4741"
},
{
"cve": "CVE-2024-5535",
"cwe": {
"id": "CWE-200",
"name": "Exposure of Sensitive Information to an Unauthorized Actor"
},
"notes": [
{
"category": "other",
"text": "Exposure of Sensitive Information to an Unauthorized Actor",
"title": "CWE-200"
},
{
"category": "other",
"text": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
},
{
"category": "other",
"text": "Dependency on Vulnerable Third-Party Component",
"title": "CWE-1395"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-5535",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-5535.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-5535"
},
{
"cve": "CVE-2024-6119",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "other",
"text": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)",
"title": "CWE-843"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-6119",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-6119.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-6119"
},
{
"cve": "CVE-2024-9143",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-9143",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-9143.json"
}
],
"title": "CVE-2024-9143"
},
{
"cve": "CVE-2024-23814",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-23814",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-23814.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-23814"
},
{
"cve": "CVE-2024-26306",
"cwe": {
"id": "CWE-310",
"name": "-"
},
"notes": [
{
"category": "other",
"text": "CWE-310",
"title": "CWE-310"
},
{
"category": "other",
"text": "Observable Discrepancy",
"title": "CWE-203"
},
{
"category": "other",
"text": "Covert Timing Channel",
"title": "CWE-385"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-26306",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-26306.json"
}
],
"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": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-26306"
},
{
"cve": "CVE-2024-33016",
"cwe": {
"id": "CWE-119",
"name": "Improper Restriction of Operations within the Bounds of a Memory Buffer"
},
"notes": [
{
"category": "other",
"text": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
},
{
"category": "general",
"text": "CVSS:4.0/AV:P/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-33016",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-33016.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-33016"
},
{
"cve": "CVE-2024-36504",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-36504",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-36504.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H/E:P/RL:U/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-36504"
},
{
"cve": "CVE-2024-45386",
"cwe": {
"id": "CWE-613",
"name": "Insufficient Session Expiration"
},
"notes": [
{
"category": "other",
"text": "Insufficient Session Expiration",
"title": "CWE-613"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-45386",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-45386.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1702551",
"CSAFPID-1702739",
"CSAFPID-1702007",
"CSAFPID-1767245",
"CSAFPID-342615",
"CSAFPID-1769354",
"CSAFPID-1769355",
"CSAFPID-1769356",
"CSAFPID-1751507",
"CSAFPID-166121",
"CSAFPID-1750039",
"CSAFPID-538462"
]
}
],
"title": "CVE-2024-45386"
}
]
}
OPENSUSE-SU-2024:12687-1
Vulnerability from csaf_opensuse - Published: 2024-06-15 00:00 - Updated: 2024-06-15 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"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": "libopenssl-1_0_0-devel-1.0.2u-12.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the libopenssl-1_0_0-devel-1.0.2u-12.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-12687",
"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/opensuse-su-2024_12687-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2020-1971 page",
"url": "https://www.suse.com/security/cve/CVE-2020-1971/"
},
{
"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-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": "libopenssl-1_0_0-devel-1.0.2u-12.1 on GA media",
"tracking": {
"current_release_date": "2024-06-15T00:00:00Z",
"generator": {
"date": "2024-06-15T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:12687-1",
"initial_release_date": "2024-06-15T00:00:00Z",
"revision_history": [
{
"date": "2024-06-15T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"product_id": "libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"product_id": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl10-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl10-1.0.2u-12.1.aarch64",
"product_id": "libopenssl10-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl1_0_0-1.0.2u-12.1.aarch64",
"product_id": "libopenssl1_0_0-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"product_id": "libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"product_id": "libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"product_id": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"product_id": "libopenssl1_0_0-steam-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"product": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"product_id": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-1.0.2u-12.1.aarch64",
"product": {
"name": "openssl-1_0_0-1.0.2u-12.1.aarch64",
"product_id": "openssl-1_0_0-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"product": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"product_id": "openssl-1_0_0-cavs-1.0.2u-12.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"product": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"product_id": "openssl-1_0_0-doc-1.0.2u-12.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl10-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl10-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl10-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl1_0_0-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"product": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"product_id": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-1.0.2u-12.1.ppc64le",
"product": {
"name": "openssl-1_0_0-1.0.2u-12.1.ppc64le",
"product_id": "openssl-1_0_0-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"product": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"product_id": "openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"product": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"product_id": "openssl-1_0_0-doc-1.0.2u-12.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"product_id": "libopenssl-1_0_0-devel-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"product_id": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl10-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl10-1.0.2u-12.1.s390x",
"product_id": "libopenssl10-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl1_0_0-1.0.2u-12.1.s390x",
"product_id": "libopenssl1_0_0-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"product_id": "libopenssl1_0_0-32bit-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"product_id": "libopenssl1_0_0-hmac-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"product_id": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"product_id": "libopenssl1_0_0-steam-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"product": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"product_id": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-1.0.2u-12.1.s390x",
"product": {
"name": "openssl-1_0_0-1.0.2u-12.1.s390x",
"product_id": "openssl-1_0_0-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"product": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"product_id": "openssl-1_0_0-cavs-1.0.2u-12.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"product": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"product_id": "openssl-1_0_0-doc-1.0.2u-12.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"product_id": "libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"product_id": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl10-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl10-1.0.2u-12.1.x86_64",
"product_id": "libopenssl10-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl1_0_0-1.0.2u-12.1.x86_64",
"product_id": "libopenssl1_0_0-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"product_id": "libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"product_id": "libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"product_id": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"product_id": "libopenssl1_0_0-steam-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"product": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"product_id": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-1.0.2u-12.1.x86_64",
"product": {
"name": "openssl-1_0_0-1.0.2u-12.1.x86_64",
"product_id": "openssl-1_0_0-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"product": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"product_id": "openssl-1_0_0-cavs-1.0.2u-12.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_0_0-doc-1.0.2u-12.1.x86_64",
"product": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.x86_64",
"product_id": "openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl10-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl10-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl10-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl10-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl10-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl10-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl10-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl10-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl1_0_0-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl1_0_0-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl1_0_0-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64"
},
"product_reference": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le"
},
"product_reference": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x"
},
"product_reference": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64"
},
"product_reference": "libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64"
},
"product_reference": "openssl-1_0_0-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le"
},
"product_reference": "openssl-1_0_0-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x"
},
"product_reference": "openssl-1_0_0-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64"
},
"product_reference": "openssl-1_0_0-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64"
},
"product_reference": "openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le"
},
"product_reference": "openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x"
},
"product_reference": "openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-cavs-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64"
},
"product_reference": "openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64"
},
"product_reference": "openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le"
},
"product_reference": "openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x"
},
"product_reference": "openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_0_0-doc-1.0.2u-12.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
},
"product_reference": "openssl-1_0_0-doc-1.0.2u-12.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2020-1971",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2020-1971"
}
],
"notes": [
{
"category": "general",
"text": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL\u0027s s_server, s_client and verify tools have support for the \"-crl_download\" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL\u0027s parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked. Fixed in OpenSSL 1.1.1i (Affected 1.1.1-1.1.1h). Fixed in OpenSSL 1.0.2x (Affected 1.0.2-1.0.2w).",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2020-1971",
"url": "https://www.suse.com/security/cve/CVE-2020-1971"
},
{
"category": "external",
"summary": "SUSE Bug 1179491 for CVE-2020-1971",
"url": "https://bugzilla.suse.com/1179491"
},
{
"category": "external",
"summary": "SUSE Bug 1196179 for CVE-2020-1971",
"url": "https://bugzilla.suse.com/1196179"
},
{
"category": "external",
"summary": "SUSE Bug 1199303 for CVE-2020-1971",
"url": "https://bugzilla.suse.com/1199303"
}
],
"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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
]
}
],
"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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2020-1971"
},
{
"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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2022-4304"
},
{
"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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.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": [
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_0_0-devel-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl10-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-hmac-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:libopenssl1_0_0-steam-32bit-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-cavs-1.0.2u-12.1.x86_64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.aarch64",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.s390x",
"openSUSE Tumbleweed:openssl-1_0_0-doc-1.0.2u-12.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2023-0286"
}
]
}
OPENSUSE-SU-2024:12688-1
Vulnerability from csaf_opensuse - Published: 2024-06-15 00:00 - Updated: 2024-06-15 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"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": "libopenssl-1_1-devel-1.1.1t-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the libopenssl-1_1-devel-1.1.1t-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-12688",
"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/opensuse-su-2024_12688-1.json"
},
{
"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": "libopenssl-1_1-devel-1.1.1t-1.1 on GA media",
"tracking": {
"current_release_date": "2024-06-15T00:00:00Z",
"generator": {
"date": "2024-06-15T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:12688-1",
"initial_release_date": "2024-06-15T00:00:00Z",
"revision_history": [
{
"date": "2024-06-15T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"product_id": "libopenssl-1_1-devel-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1t-1.1.aarch64",
"product": {
"name": "libopenssl1_1-1.1.1t-1.1.aarch64",
"product_id": "libopenssl1_1-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"product": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"product_id": "libopenssl1_1-32bit-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"product_id": "libopenssl1_1-hmac-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1t-1.1.aarch64",
"product": {
"name": "openssl-1_1-1.1.1t-1.1.aarch64",
"product_id": "openssl-1_1-1.1.1t-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1t-1.1.aarch64",
"product": {
"name": "openssl-1_1-doc-1.1.1t-1.1.aarch64",
"product_id": "openssl-1_1-doc-1.1.1t-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"product": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"product_id": "libopenssl-1_1-devel-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1t-1.1.ppc64le",
"product": {
"name": "libopenssl1_1-1.1.1t-1.1.ppc64le",
"product_id": "libopenssl1_1-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"product": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"product_id": "libopenssl1_1-32bit-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"product": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"product_id": "libopenssl1_1-hmac-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1t-1.1.ppc64le",
"product": {
"name": "openssl-1_1-1.1.1t-1.1.ppc64le",
"product_id": "openssl-1_1-1.1.1t-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"product": {
"name": "openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"product_id": "openssl-1_1-doc-1.1.1t-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"product": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"product_id": "libopenssl-1_1-devel-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1t-1.1.s390x",
"product": {
"name": "libopenssl1_1-1.1.1t-1.1.s390x",
"product_id": "libopenssl1_1-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"product": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"product_id": "libopenssl1_1-32bit-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"product": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"product_id": "libopenssl1_1-hmac-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1t-1.1.s390x",
"product": {
"name": "openssl-1_1-1.1.1t-1.1.s390x",
"product_id": "openssl-1_1-1.1.1t-1.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1t-1.1.s390x",
"product": {
"name": "openssl-1_1-doc-1.1.1t-1.1.s390x",
"product_id": "openssl-1_1-doc-1.1.1t-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"product_id": "libopenssl-1_1-devel-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"product": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"product_id": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-1.1.1t-1.1.x86_64",
"product": {
"name": "libopenssl1_1-1.1.1t-1.1.x86_64",
"product_id": "libopenssl1_1-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"product": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"product_id": "libopenssl1_1-32bit-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"product_id": "libopenssl1_1-hmac-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"product": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"product_id": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-1.1.1t-1.1.x86_64",
"product": {
"name": "openssl-1_1-1.1.1t-1.1.x86_64",
"product_id": "openssl-1_1-1.1.1t-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-1_1-doc-1.1.1t-1.1.x86_64",
"product": {
"name": "openssl-1_1-doc-1.1.1t-1.1.x86_64",
"product_id": "openssl-1_1-doc-1.1.1t-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"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.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64"
},
"product_reference": "libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64"
},
"product_reference": "libopenssl1_1-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le"
},
"product_reference": "libopenssl1_1-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x"
},
"product_reference": "libopenssl1_1-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64"
},
"product_reference": "libopenssl1_1-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le"
},
"product_reference": "libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x"
},
"product_reference": "libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-32bit-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64"
},
"product_reference": "libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64"
},
"product_reference": "libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64"
},
"product_reference": "openssl-1_1-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le"
},
"product_reference": "openssl-1_1-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x"
},
"product_reference": "openssl-1_1-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64"
},
"product_reference": "openssl-1_1-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1t-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64"
},
"product_reference": "openssl-1_1-doc-1.1.1t-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1t-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le"
},
"product_reference": "openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1t-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x"
},
"product_reference": "openssl-1_1-doc-1.1.1t-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1_1-doc-1.1.1t-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64"
},
"product_reference": "openssl-1_1-doc-1.1.1t-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.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": [
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-1_1-devel-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:libopenssl1_1-hmac-32bit-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-1.1.1t-1.1.x86_64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.aarch64",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.s390x",
"openSUSE Tumbleweed:openssl-1_1-doc-1.1.1t-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2023-0286"
}
]
}
OPENSUSE-SU-2024:12716-1
Vulnerability from csaf_opensuse - Published: 2024-06-15 00:00 - Updated: 2024-06-15 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"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": "libopenssl-3-devel-3.0.8-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the libopenssl-3-devel-3.0.8-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2024-12716",
"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/opensuse-su-2024_12716-1.json"
},
{
"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": "libopenssl-3-devel-3.0.8-1.1 on GA media",
"tracking": {
"current_release_date": "2024-06-15T00:00:00Z",
"generator": {
"date": "2024-06-15T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2024:12716-1",
"initial_release_date": "2024-06-15T00:00:00Z",
"revision_history": [
{
"date": "2024-06-15T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.8-1.1.aarch64",
"product": {
"name": "libopenssl-3-devel-3.0.8-1.1.aarch64",
"product_id": "libopenssl-3-devel-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"product": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"product_id": "libopenssl-3-devel-32bit-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.8-1.1.aarch64",
"product": {
"name": "libopenssl3-3.0.8-1.1.aarch64",
"product_id": "libopenssl3-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.0.8-1.1.aarch64",
"product": {
"name": "libopenssl3-32bit-3.0.8-1.1.aarch64",
"product_id": "libopenssl3-32bit-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-3.0.8-1.1.aarch64",
"product": {
"name": "libopenssl3-hmac-3.0.8-1.1.aarch64",
"product_id": "libopenssl3-hmac-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"product": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"product_id": "libopenssl3-hmac-32bit-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.8-1.1.aarch64",
"product": {
"name": "openssl-3-3.0.8-1.1.aarch64",
"product_id": "openssl-3-3.0.8-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.0.8-1.1.aarch64",
"product": {
"name": "openssl-3-doc-3.0.8-1.1.aarch64",
"product_id": "openssl-3-doc-3.0.8-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.8-1.1.ppc64le",
"product": {
"name": "libopenssl-3-devel-3.0.8-1.1.ppc64le",
"product_id": "libopenssl-3-devel-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"product": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"product_id": "libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.8-1.1.ppc64le",
"product": {
"name": "libopenssl3-3.0.8-1.1.ppc64le",
"product_id": "libopenssl3-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.0.8-1.1.ppc64le",
"product": {
"name": "libopenssl3-32bit-3.0.8-1.1.ppc64le",
"product_id": "libopenssl3-32bit-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-3.0.8-1.1.ppc64le",
"product": {
"name": "libopenssl3-hmac-3.0.8-1.1.ppc64le",
"product_id": "libopenssl3-hmac-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"product": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"product_id": "libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.8-1.1.ppc64le",
"product": {
"name": "openssl-3-3.0.8-1.1.ppc64le",
"product_id": "openssl-3-3.0.8-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.0.8-1.1.ppc64le",
"product": {
"name": "openssl-3-doc-3.0.8-1.1.ppc64le",
"product_id": "openssl-3-doc-3.0.8-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.8-1.1.s390x",
"product": {
"name": "libopenssl-3-devel-3.0.8-1.1.s390x",
"product_id": "libopenssl-3-devel-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"product": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"product_id": "libopenssl-3-devel-32bit-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.8-1.1.s390x",
"product": {
"name": "libopenssl3-3.0.8-1.1.s390x",
"product_id": "libopenssl3-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.0.8-1.1.s390x",
"product": {
"name": "libopenssl3-32bit-3.0.8-1.1.s390x",
"product_id": "libopenssl3-32bit-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-3.0.8-1.1.s390x",
"product": {
"name": "libopenssl3-hmac-3.0.8-1.1.s390x",
"product_id": "libopenssl3-hmac-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"product": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"product_id": "libopenssl3-hmac-32bit-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.8-1.1.s390x",
"product": {
"name": "openssl-3-3.0.8-1.1.s390x",
"product_id": "openssl-3-3.0.8-1.1.s390x"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.0.8-1.1.s390x",
"product": {
"name": "openssl-3-doc-3.0.8-1.1.s390x",
"product_id": "openssl-3-doc-3.0.8-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "libopenssl-3-devel-3.0.8-1.1.x86_64",
"product": {
"name": "libopenssl-3-devel-3.0.8-1.1.x86_64",
"product_id": "libopenssl-3-devel-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"product": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"product_id": "libopenssl-3-devel-32bit-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-3.0.8-1.1.x86_64",
"product": {
"name": "libopenssl3-3.0.8-1.1.x86_64",
"product_id": "libopenssl3-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-32bit-3.0.8-1.1.x86_64",
"product": {
"name": "libopenssl3-32bit-3.0.8-1.1.x86_64",
"product_id": "libopenssl3-32bit-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-3.0.8-1.1.x86_64",
"product": {
"name": "libopenssl3-hmac-3.0.8-1.1.x86_64",
"product_id": "libopenssl3-hmac-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"product": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"product_id": "libopenssl3-hmac-32bit-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-3-3.0.8-1.1.x86_64",
"product": {
"name": "openssl-3-3.0.8-1.1.x86_64",
"product_id": "openssl-3-3.0.8-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "openssl-3-doc-3.0.8-1.1.x86_64",
"product": {
"name": "openssl-3-doc-3.0.8-1.1.x86_64",
"product_id": "openssl-3-doc-3.0.8-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"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.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64"
},
"product_reference": "libopenssl-3-devel-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x"
},
"product_reference": "libopenssl-3-devel-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64"
},
"product_reference": "libopenssl-3-devel-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64"
},
"product_reference": "libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le"
},
"product_reference": "libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x"
},
"product_reference": "libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl-3-devel-32bit-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64"
},
"product_reference": "libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64"
},
"product_reference": "libopenssl3-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le"
},
"product_reference": "libopenssl3-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x"
},
"product_reference": "libopenssl3-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64"
},
"product_reference": "libopenssl3-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64"
},
"product_reference": "libopenssl3-32bit-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le"
},
"product_reference": "libopenssl3-32bit-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x"
},
"product_reference": "libopenssl3-32bit-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-32bit-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64"
},
"product_reference": "libopenssl3-32bit-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64"
},
"product_reference": "libopenssl3-hmac-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le"
},
"product_reference": "libopenssl3-hmac-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x"
},
"product_reference": "libopenssl3-hmac-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64"
},
"product_reference": "libopenssl3-hmac-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64"
},
"product_reference": "libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le"
},
"product_reference": "libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x"
},
"product_reference": "libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libopenssl3-hmac-32bit-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64"
},
"product_reference": "libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64"
},
"product_reference": "openssl-3-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le"
},
"product_reference": "openssl-3-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x"
},
"product_reference": "openssl-3-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64"
},
"product_reference": "openssl-3-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.0.8-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64"
},
"product_reference": "openssl-3-doc-3.0.8-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.0.8-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le"
},
"product_reference": "openssl-3-doc-3.0.8-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.0.8-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x"
},
"product_reference": "openssl-3-doc-3.0.8-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-3-doc-3.0.8-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
},
"product_reference": "openssl-3-doc-3.0.8-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
},
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
},
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
},
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
},
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"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": [
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl-3-devel-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:libopenssl3-hmac-32bit-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-3.0.8-1.1.x86_64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.aarch64",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.ppc64le",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.s390x",
"openSUSE Tumbleweed:openssl-3-doc-3.0.8-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2024-06-15T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2023-0401"
}
]
}
RHSA-2023:0946
Vulnerability from csaf_redhat - Published: 2023-02-28 08:22 - Updated: 2026-03-20 00:02A flaw was found in Open SSL. A read buffer overrun can be triggered in X.509 certificate verification, specifically in name constraint checking. Note that this occurs after certificate chain signature verification, and requires either a CA to have signed the malicious certificate or for the application to continue certificate verification despite failure to construct a path to a trusted issuer.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
A double-free vulnerability was found in OpenSSL's PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (for example, "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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
A use-after-free vulnerability was found in OpenSSL's BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to load malformed PKCS7 data with the d2i_PKCS7(), d2i_PKCS7_bio() or d2i_PKCS7_fp() functions. This may result in an application crash which could lead to a denial of service. The TLS implementation in OpenSSL does not call this function, however, third party applications might call these functions on untrusted data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to check a malformed DSA public key by the EVP_PKEY_public_check() function, most likely leading to an application crash. This function can be called on public keys supplied from untrusted sources, which could allow an attacker to cause a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
Workaround
|
A NULL pointer vulnerability was found in OpenSSL, which can be dereferenced when signatures are being verified on PKCS7 signed or signedAndEnveloped data. In case the hash algorithm used for the signature is known to the OpenSSL library but the implementation of the hash algorithm is not available, the digest initialization will fail. There is a missing check for the return value from the initialization function which later leads to invalid usage of the digest API, most likely leading to a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64 | — |
Vendor Fix
fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for openssl is now available for Red Hat Enterprise Linux 9.\n\nRed 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.\n\n[Updated 20 March 2023]\nPreviously, this erratum was marked as having a security impact of Moderate. This was incorrect; the security impact of this erratum has been changed to Important, to correctly reflect the highest impact rating of CVE fixes included in this release. No changes have been made to packages.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: X.400 address type confusion in X.509 GeneralName (CVE-2023-0286)\n\n* openssl: read buffer overflow in X.509 certificate verification (CVE-2022-4203)\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\n* openssl: invalid pointer dereference in d2i_PKCS7 functions (CVE-2023-0216)\n\n* openssl: NULL dereference validating DSA public key (CVE-2023-0217)\n\n* openssl: NULL dereference during PKCS7 data verification (CVE-2023-0401)\n\nFor 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.\n\nBug Fix(es):\n\n* HMAC generation should reject key lengths \u003c 112 bits or provide an indicator in FIPS mode (BZ#2144000)\n\n* In FIPS mode, openssl should set a minimum length for passwords in PBKDF2 (BZ#2144003)\n\n* stunnel consumes high amount of memory when pestered with TCP connections without a TLS handshake (BZ#2144008)\n\n* In FIPS mode, openssl should reject SHAKE as digest for RSA-OAEP or provide an indicator (BZ#2144010)\n\n* In FIPS mode, openssl should reject RSASSA-PSS salt lengths larger than the output size of the hash function used, or provide an indicator (BZ#2144012)\n\n* In FIPS mode, openssl should reject RSA signatures with X9.31 padding, or provide an indicator (BZ#2144015)\n\n* In FIPS mode, openssl should reject SHA-224, SHA-384, SHA-512-224, and SHA-512-256 as hashes for hash-based DRBGs, or provide an indicator after 2023-05-16 (BZ#2144017)\n\n* In FIPS mode, openssl should reject KDF input and output key lengths \u003c 112 bits or provide an indicator (BZ#2144019)\n\n* In FIPS mode, openssl should reject RSA keys \u003c 2048 bits when using EVP_PKEY_decapsulate, or provide an indicator (BZ#2145170)\n\n* RHEL9.1 Nightly[0912] - error:03000093:digital envelope routines::command not supported when git clone is run with configured ibmca engine backed by libica.so.4 (OpenSSL 3.0) (BZ#2149010)\n\n* OpenSSL FIPS checksum code needs update (BZ#2158412)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2023:0946",
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2144000",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144000"
},
{
"category": "external",
"summary": "2144003",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144003"
},
{
"category": "external",
"summary": "2144006",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144006"
},
{
"category": "external",
"summary": "2144008",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144008"
},
{
"category": "external",
"summary": "2144010",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144010"
},
{
"category": "external",
"summary": "2144012",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144012"
},
{
"category": "external",
"summary": "2144015",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144015"
},
{
"category": "external",
"summary": "2144017",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144017"
},
{
"category": "external",
"summary": "2144019",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144019"
},
{
"category": "external",
"summary": "2145170",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2145170"
},
{
"category": "external",
"summary": "2158412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2158412"
},
{
"category": "external",
"summary": "2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "2164488",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488"
},
{
"category": "external",
"summary": "2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "2164497",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497"
},
{
"category": "external",
"summary": "2164499",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499"
},
{
"category": "external",
"summary": "2164500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2023/rhsa-2023_0946.json"
}
],
"title": "Red Hat Security Advisory: openssl security and bug fix update",
"tracking": {
"current_release_date": "2026-03-20T00:02:22+00:00",
"generator": {
"date": "2026-03-20T00:02:22+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.3"
}
},
"id": "RHSA-2023:0946",
"initial_release_date": "2023-02-28T08:22:08+00:00",
"revision_history": [
{
"date": "2023-02-28T08:22:08+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2023-03-21T11:29:43+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-03-20T00:02:22+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:9::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-47.el9_1.src",
"product": {
"name": "openssl-1:3.0.1-47.el9_1.src",
"product_id": "openssl-1:3.0.1-47.el9_1.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-47.el9_1?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-libs-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-libs-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-devel-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-devel-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-47.el9_1.aarch64",
"product": {
"name": "openssl-perl-1:3.0.1-47.el9_1.aarch64",
"product_id": "openssl-perl-1:3.0.1-47.el9_1.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-47.el9_1?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"product": {
"name": "openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"product_id": "openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-47.el9_1?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-libs-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-libs-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-devel-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-devel-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-47.el9_1.x86_64",
"product": {
"name": "openssl-perl-1:3.0.1-47.el9_1.x86_64",
"product_id": "openssl-perl-1:3.0.1-47.el9_1.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-47.el9_1?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-47.el9_1.i686",
"product": {
"name": "openssl-libs-1:3.0.1-47.el9_1.i686",
"product_id": "openssl-libs-1:3.0.1-47.el9_1.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-47.el9_1?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-47.el9_1.i686",
"product": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.i686",
"product_id": "openssl-debugsource-1:3.0.1-47.el9_1.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-47.el9_1?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"product": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"product_id": "openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-47.el9_1?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"product_id": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-47.el9_1?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-47.el9_1.i686",
"product": {
"name": "openssl-devel-1:3.0.1-47.el9_1.i686",
"product_id": "openssl-devel-1:3.0.1-47.el9_1.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-47.el9_1?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-libs-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-libs-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-devel-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-devel-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-47.el9_1.s390x",
"product": {
"name": "openssl-perl-1:3.0.1-47.el9_1.s390x",
"product_id": "openssl-perl-1:3.0.1-47.el9_1.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-47.el9_1?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.src as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.src",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "AppStream-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.src",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-devel-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-libs-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.aarch64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.s390x",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-47.el9_1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
},
"product_reference": "openssl-perl-1:3.0.1-47.el9_1.x86_64",
"relates_to_product_reference": "BaseOS-9.1.0.Z.MAIN"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4203",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164488"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Open SSL. A read buffer overrun can be triggered in X.509 certificate verification, specifically in name constraint checking. Note that this occurs after certificate chain signature verification, and requires either a CA to have signed the malicious certificate or for the application to continue certificate verification despite failure to construct a path to a trusted issuer.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: read buffer overflow in X.509 certificate verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4203"
},
{
"category": "external",
"summary": "RHBZ#2164488",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4203",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4203"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4203",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4203"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: read buffer overflow in X.509 certificate verification"
},
{
"cve": "CVE-2022-4304",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164487"
}
],
"notes": [
{
"category": "description",
"text": "A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: timing attack in RSA Decryption implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "RHBZ#2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4304",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4304"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: timing attack in RSA Decryption implementation"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164494"
}
],
"notes": [
{
"category": "description",
"text": "A double-free vulnerability was found in OpenSSL\u0027s PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (for example, \"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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: double free after calling PEM_read_bio_ex",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double-free vulnerability was found in the OpenSSL library in the PEM_read_bio_ex() function and its wrappers. The flaw is triggered when the library parses a specially crafted PEM file constructed to have zero bytes of payload data. This edge case causes the function to return a failure code but also populate a header argument with a pointer to memory that has already been freed, leading to a double-free condition if the calling application also attempts to free it, resulting in a crash and a denial of service. The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.\n\nThe versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are shipping OpenSSL 1.1.1 and 1.0.2, which do not contain the incorrect code, so those are not affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "RHBZ#2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4450",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4450"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: double free after calling PEM_read_bio_ex"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164492"
}
],
"notes": [
{
"category": "description",
"text": "A use-after-free vulnerability was found in OpenSSL\u0027s BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: use-after-free following BIO_new_NDEF",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was found in the OpenSSL library within the BIO_new_NDEF function, which is used for ASN.1 data streaming. The flaw is a use-after-free issue that happens when an error occurs while setting up a BIO chain. In this case, the filter BIO is freed, but the original BIO still holds a reference to it. If the caller later calls BIO_pop(), it tries to use this freed pointer, causing a crash and leading to a Denial of Service (DoS). The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "RHBZ#2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0215",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: use-after-free following BIO_new_NDEF"
},
{
"cve": "CVE-2023-0216",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164497"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to load malformed PKCS7 data with the d2i_PKCS7(), d2i_PKCS7_bio() or d2i_PKCS7_fp() functions. This may result in an application crash which could lead to a denial of service. The TLS implementation in OpenSSL does not call this function, however, third party applications might call these functions on untrusted data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: invalid pointer dereference in d2i_PKCS7 functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0216"
},
{
"category": "external",
"summary": "RHBZ#2164497",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0216",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0216"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0216",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0216"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: invalid pointer dereference in d2i_PKCS7 functions"
},
{
"cve": "CVE-2023-0217",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164499"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to check a malformed DSA public key by the EVP_PKEY_public_check() function, most likely leading to an application crash. This function can be called on public keys supplied from untrusted sources, which could allow an attacker to cause a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: NULL dereference validating DSA public key",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0217"
},
{
"category": "external",
"summary": "RHBZ#2164499",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0217",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0217"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0217",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0217"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: NULL dereference validating DSA public key"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164440"
}
],
"notes": [
{
"category": "description",
"text": "A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: X.400 address type confusion in X.509 GeneralName",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For shim in Red Hat Enterprise Linux 8 \u0026 9, is not affected as shim doesn\u0027t support any CRL processing.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "RHBZ#2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0286",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: X.400 address type confusion in X.509 GeneralName"
},
{
"cve": "CVE-2023-0401",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164500"
}
],
"notes": [
{
"category": "description",
"text": "A NULL pointer vulnerability was found in OpenSSL, which can be dereferenced when signatures are being verified on PKCS7 signed or signedAndEnveloped data. In case the hash algorithm used for the signature is known to the OpenSSL library but the implementation of the hash algorithm is not available, the digest initialization will fail. There is a missing check for the return value from the initialization function which later leads to invalid usage of the digest API, most likely leading to a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: NULL dereference during PKCS7 data verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0401"
},
{
"category": "external",
"summary": "RHBZ#2164500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0401",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0401"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0401",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0401"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-28T08:22:08+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:0946"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"AppStream-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"AppStream-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.src",
"BaseOS-9.1.0.Z.MAIN:openssl-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-debugsource-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-devel-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.i686",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-libs-debuginfo-1:3.0.1-47.el9_1.x86_64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.aarch64",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.ppc64le",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.s390x",
"BaseOS-9.1.0.Z.MAIN:openssl-perl-1:3.0.1-47.el9_1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: NULL dereference during PKCS7 data verification"
}
]
}
RHSA-2023:1199
Vulnerability from csaf_redhat - Published: 2023-03-14 13:57 - Updated: 2026-03-20 00:02A flaw was found in Open SSL. A read buffer overrun can be triggered in X.509 certificate verification, specifically in name constraint checking. Note that this occurs after certificate chain signature verification, and requires either a CA to have signed the malicious certificate or for the application to continue certificate verification despite failure to construct a path to a trusted issuer.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
A double-free vulnerability was found in OpenSSL's PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (for example, "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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
A use-after-free vulnerability was found in OpenSSL's BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to load malformed PKCS7 data with the d2i_PKCS7(), d2i_PKCS7_bio() or d2i_PKCS7_fp() functions. This may result in an application crash which could lead to a denial of service. The TLS implementation in OpenSSL does not call this function, however, third party applications might call these functions on untrusted data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to check a malformed DSA public key by the EVP_PKEY_public_check() function, most likely leading to an application crash. This function can be called on public keys supplied from untrusted sources, which could allow an attacker to cause a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
A NULL pointer vulnerability was found in OpenSSL, which can be dereferenced when signatures are being verified on PKCS7 signed or signedAndEnveloped data. In case the hash algorithm used for the signature is known to the OpenSSL library but the implementation of the hash algorithm is not available, the digest initialization will fail. There is a missing check for the return value from the initialization function which later leads to invalid usage of the digest API, most likely leading to a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64 | — |
Vendor Fix
fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for openssl is now available for Red Hat Enterprise Linux 9.0 Extended Update Support.\n\nRed 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.\n\n[Updated 20 March 2023]\nPreviously, this erratum was marked as having a security impact of Moderate. This was incorrect; the security impact of this erratum has been changed to Important, to correctly reflect the highest impact rating of CVE fixes included in this release. No changes have been made to packages.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: X.400 address type confusion in X.509 GeneralName (CVE-2023-0286)\n\n* openssl: read buffer overflow in X.509 certificate verification (CVE-2022-4203)\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\n* openssl: invalid pointer dereference in d2i_PKCS7 functions (CVE-2023-0216)\n\n* openssl: NULL dereference validating DSA public key (CVE-2023-0217)\n\n* openssl: NULL dereference during PKCS7 data verification (CVE-2023-0401)\n\nFor 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.\n\nBug Fix(es):\n\n* HMAC generation should reject key lengths \u003c 112 bits or provide an indicator in FIPS mode (BZ#2144001)\n\n* In FIPS mode, openssl should set a minimum length for passwords in PBKDF2 (BZ#2144004)\n\n* stunnel consumes high amount of memory when pestered with TCP connections without a TLS handshake (BZ#2144009)\n\n* In FIPS mode, openssl should reject SHAKE as digest for RSA-OAEP or provide an indicator (BZ#2144011)\n\n* In FIPS mode, openssl should reject RSASSA-PSS salt lengths larger than the output size of the hash function used, or provide an indicator (BZ#2144013)\n\n* In FIPS mode, openssl should reject RSA signatures with X9.31 padding, or provide an indicator (BZ#2144016)\n\n* In FIPS mode, openssl should reject SHA-224, SHA-384, SHA-512-224, and SHA-512-256 as hashes for hash-based DRBGs, or provide an indicator after 2023-05-16 (BZ#2144018)\n\n* In FIPS mode, openssl should reject KDF input and output key lengths \u003c 112 bits or provide an indicator (BZ#2144020)\n\n* In FIPS mode, openssl should reject RSA keys \u003c 2048 bits when using EVP_PKEY_decapsulate, or provide an indicator (BZ#2145171)\n\n* OpenSSL FIPS checksum code needs update (BZ#2158413)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2023:1199",
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2144001",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144001"
},
{
"category": "external",
"summary": "2144004",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144004"
},
{
"category": "external",
"summary": "2144007",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144007"
},
{
"category": "external",
"summary": "2144009",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144009"
},
{
"category": "external",
"summary": "2144011",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144011"
},
{
"category": "external",
"summary": "2144013",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144013"
},
{
"category": "external",
"summary": "2144016",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144016"
},
{
"category": "external",
"summary": "2144018",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144018"
},
{
"category": "external",
"summary": "2144020",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2144020"
},
{
"category": "external",
"summary": "2145171",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2145171"
},
{
"category": "external",
"summary": "2158413",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2158413"
},
{
"category": "external",
"summary": "2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "2164488",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488"
},
{
"category": "external",
"summary": "2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "2164497",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497"
},
{
"category": "external",
"summary": "2164499",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499"
},
{
"category": "external",
"summary": "2164500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2023/rhsa-2023_1199.json"
}
],
"title": "Red Hat Security Advisory: openssl security and bug fix update",
"tracking": {
"current_release_date": "2026-03-20T00:02:22+00:00",
"generator": {
"date": "2026-03-20T00:02:22+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.3"
}
},
"id": "RHSA-2023:1199",
"initial_release_date": "2023-03-14T13:57:15+00:00",
"revision_history": [
{
"date": "2023-03-14T13:57:15+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2023-03-21T11:27:46+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-03-20T00:02:22+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus:9.0::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.aarch64",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.aarch64",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.i686",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.i686",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.i686",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.i686",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.i686",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.i686",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.x86_64",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.x86_64",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-devel-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-devel-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-perl-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-perl-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:3.0.1-46.el9_0.s390x",
"product": {
"name": "openssl-libs-1:3.0.1-46.el9_0.s390x",
"product_id": "openssl-libs-1:3.0.1-46.el9_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@3.0.1-46.el9_0?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:3.0.1-46.el9_0.src",
"product": {
"name": "openssl-1:3.0.1-46.el9_0.src",
"product_id": "openssl-1:3.0.1-46.el9_0.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@3.0.1-46.el9_0?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.src",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)",
"product_id": "AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.src",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-devel-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-libs-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:3.0.1-46.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
},
"product_reference": "openssl-perl-1:3.0.1-46.el9_0.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4203",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164488"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Open SSL. A read buffer overrun can be triggered in X.509 certificate verification, specifically in name constraint checking. Note that this occurs after certificate chain signature verification, and requires either a CA to have signed the malicious certificate or for the application to continue certificate verification despite failure to construct a path to a trusted issuer.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: read buffer overflow in X.509 certificate verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4203"
},
{
"category": "external",
"summary": "RHBZ#2164488",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164488"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4203",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4203"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4203",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4203"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: read buffer overflow in X.509 certificate verification"
},
{
"cve": "CVE-2022-4304",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164487"
}
],
"notes": [
{
"category": "description",
"text": "A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: timing attack in RSA Decryption implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "RHBZ#2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4304",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4304"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: timing attack in RSA Decryption implementation"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164494"
}
],
"notes": [
{
"category": "description",
"text": "A double-free vulnerability was found in OpenSSL\u0027s PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (for example, \"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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: double free after calling PEM_read_bio_ex",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double-free vulnerability was found in the OpenSSL library in the PEM_read_bio_ex() function and its wrappers. The flaw is triggered when the library parses a specially crafted PEM file constructed to have zero bytes of payload data. This edge case causes the function to return a failure code but also populate a header argument with a pointer to memory that has already been freed, leading to a double-free condition if the calling application also attempts to free it, resulting in a crash and a denial of service. The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.\n\nThe versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are shipping OpenSSL 1.1.1 and 1.0.2, which do not contain the incorrect code, so those are not affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "RHBZ#2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4450",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4450"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: double free after calling PEM_read_bio_ex"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164492"
}
],
"notes": [
{
"category": "description",
"text": "A use-after-free vulnerability was found in OpenSSL\u0027s BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: use-after-free following BIO_new_NDEF",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was found in the OpenSSL library within the BIO_new_NDEF function, which is used for ASN.1 data streaming. The flaw is a use-after-free issue that happens when an error occurs while setting up a BIO chain. In this case, the filter BIO is freed, but the original BIO still holds a reference to it. If the caller later calls BIO_pop(), it tries to use this freed pointer, causing a crash and leading to a Denial of Service (DoS). The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "RHBZ#2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0215",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: use-after-free following BIO_new_NDEF"
},
{
"cve": "CVE-2023-0216",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164497"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to load malformed PKCS7 data with the d2i_PKCS7(), d2i_PKCS7_bio() or d2i_PKCS7_fp() functions. This may result in an application crash which could lead to a denial of service. The TLS implementation in OpenSSL does not call this function, however, third party applications might call these functions on untrusted data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: invalid pointer dereference in d2i_PKCS7 functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0216"
},
{
"category": "external",
"summary": "RHBZ#2164497",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164497"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0216",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0216"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0216",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0216"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: invalid pointer dereference in d2i_PKCS7 functions"
},
{
"cve": "CVE-2023-0217",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164499"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSL. An invalid pointer dereference on read can be triggered when an application tries to check a malformed DSA public key by the EVP_PKEY_public_check() function, most likely leading to an application crash. This function can be called on public keys supplied from untrusted sources, which could allow an attacker to cause a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: NULL dereference validating DSA public key",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0217"
},
{
"category": "external",
"summary": "RHBZ#2164499",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164499"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0217",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0217"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0217",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0217"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: NULL dereference validating DSA public key"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164440"
}
],
"notes": [
{
"category": "description",
"text": "A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: X.400 address type confusion in X.509 GeneralName",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For shim in Red Hat Enterprise Linux 8 \u0026 9, is not affected as shim doesn\u0027t support any CRL processing.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "RHBZ#2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0286",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: X.400 address type confusion in X.509 GeneralName"
},
{
"cve": "CVE-2023-0401",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164500"
}
],
"notes": [
{
"category": "description",
"text": "A NULL pointer vulnerability was found in OpenSSL, which can be dereferenced when signatures are being verified on PKCS7 signed or signedAndEnveloped data. In case the hash algorithm used for the signature is known to the OpenSSL library but the implementation of the hash algorithm is not available, the digest initialization will fail. There is a missing check for the return value from the initialization function which later leads to invalid usage of the digest API, most likely leading to a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: NULL dereference during PKCS7 data verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat Enterprise Linux 6, 7, and 8 ships OpenSSL 1.1.1 and 1.0.2 which do not contain the incorrect code, so those are not affected by this CVE. Similarly, the versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0401"
},
{
"category": "external",
"summary": "RHBZ#2164500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164500"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0401",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0401"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0401",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0401"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-14T13:57:15+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1199"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"AppStream-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"AppStream-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.src",
"BaseOS-9.0.0.Z.EUS:openssl-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-debugsource-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-devel-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.i686",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-libs-debuginfo-1:3.0.1-46.el9_0.x86_64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.aarch64",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.ppc64le",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.s390x",
"BaseOS-9.0.0.Z.EUS:openssl-perl-1:3.0.1-46.el9_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: NULL dereference during PKCS7 data verification"
}
]
}
RHSA-2023:1405
Vulnerability from csaf_redhat - Published: 2023-03-22 10:38 - Updated: 2026-01-22 04:24A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
A double-free vulnerability was found in OpenSSL's PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (for example, "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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
A use-after-free vulnerability was found in OpenSSL's BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
|
A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for openssl is now available for Red Hat Enterprise Linux 8.\n\nRed 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.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenSSL is a toolkit that implements the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols, as well as a full-strength general-purpose cryptography library.\n\nSecurity Fix(es):\n\n* openssl: X.400 address type confusion in X.509 GeneralName (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 score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2023:1405",
"url": "https://access.redhat.com/errata/RHSA-2023:1405"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2023/rhsa-2023_1405.json"
}
],
"title": "Red Hat Security Advisory: openssl security update",
"tracking": {
"current_release_date": "2026-01-22T04:24:29+00:00",
"generator": {
"date": "2026-01-22T04:24:29+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.15"
}
},
"id": "RHSA-2023:1405",
"initial_release_date": "2023-03-22T10:38:31+00:00",
"revision_history": [
{
"date": "2023-03-22T10:38:31+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2023-03-22T10:38:31+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-01-22T04:24:29+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 8)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:8::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:1.1.1k-9.el8_7.src",
"product": {
"name": "openssl-1:1.1.1k-9.el8_7.src",
"product_id": "openssl-1:1.1.1k-9.el8_7.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@1.1.1k-9.el8_7?arch=src\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"product": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"product_id": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@1.1.1k-9.el8_7?arch=aarch64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"product": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"product_id": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@1.1.1k-9.el8_7?arch=ppc64le\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-perl-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"product": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"product_id": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@1.1.1k-9.el8_7?arch=x86_64\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-devel-1:1.1.1k-9.el8_7.i686",
"product": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.i686",
"product_id": "openssl-devel-1:1.1.1k-9.el8_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@1.1.1k-9.el8_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:1.1.1k-9.el8_7.i686",
"product": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.i686",
"product_id": "openssl-libs-1:1.1.1k-9.el8_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@1.1.1k-9.el8_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"product": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"product_id": "openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@1.1.1k-9.el8_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"product": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"product_id": "openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@1.1.1k-9.el8_7?arch=i686\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"product": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"product_id": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@1.1.1k-9.el8_7?arch=i686\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "openssl-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-devel-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-devel-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-devel@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-libs-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-perl-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-perl-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-perl@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debugsource@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-debuginfo@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"product": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"product_id": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/openssl-libs-debuginfo@1.1.1k-9.el8_7?arch=s390x\u0026epoch=1"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:1.1.1k-9.el8_7.src as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src"
},
"product_reference": "openssl-1:1.1.1k-9.el8_7.src",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686"
},
"product_reference": "openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686"
},
"product_reference": "openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-debugsource-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686"
},
"product_reference": "openssl-devel-1:1.1.1k-9.el8_7.i686",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-devel-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-devel-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686"
},
"product_reference": "openssl-libs-1:1.1.1k-9.el8_7.i686",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-libs-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686"
},
"product_reference": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64"
},
"product_reference": "openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le"
},
"product_reference": "openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x"
},
"product_reference": "openssl-perl-1:1.1.1k-9.el8_7.s390x",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "openssl-perl-1:1.1.1k-9.el8_7.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
"product_id": "BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
},
"product_reference": "openssl-perl-1:1.1.1k-9.el8_7.x86_64",
"relates_to_product_reference": "BaseOS-8.7.0.Z.MAIN"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4304",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164487"
}
],
"notes": [
{
"category": "description",
"text": "A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: timing attack in RSA Decryption implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "RHBZ#2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4304",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4304"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-22T10:38:31+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1405"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: timing attack in RSA Decryption implementation"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164494"
}
],
"notes": [
{
"category": "description",
"text": "A double-free vulnerability was found in OpenSSL\u0027s PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (for example, \"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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: double free after calling PEM_read_bio_ex",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double-free vulnerability was found in the OpenSSL library in the PEM_read_bio_ex() function and its wrappers. The flaw is triggered when the library parses a specially crafted PEM file constructed to have zero bytes of payload data. This edge case causes the function to return a failure code but also populate a header argument with a pointer to memory that has already been freed, leading to a double-free condition if the calling application also attempts to free it, resulting in a crash and a denial of service. The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.\n\nThe versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are shipping OpenSSL 1.1.1 and 1.0.2, which do not contain the incorrect code, so those are not affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "RHBZ#2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4450",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4450"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-22T10:38:31+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1405"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: double free after calling PEM_read_bio_ex"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164492"
}
],
"notes": [
{
"category": "description",
"text": "A use-after-free vulnerability was found in OpenSSL\u0027s BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: use-after-free following BIO_new_NDEF",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was found in the OpenSSL library within the BIO_new_NDEF function, which is used for ASN.1 data streaming. The flaw is a use-after-free issue that happens when an error occurs while setting up a BIO chain. In this case, the filter BIO is freed, but the original BIO still holds a reference to it. If the caller later calls BIO_pop(), it tries to use this freed pointer, causing a crash and leading to a Denial of Service (DoS). The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "RHBZ#2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0215",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-22T10:38:31+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1405"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: use-after-free following BIO_new_NDEF"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164440"
}
],
"notes": [
{
"category": "description",
"text": "A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: X.400 address type confusion in X.509 GeneralName",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For shim in Red Hat Enterprise Linux 8 \u0026 9, is not affected as shim doesn\u0027t support any CRL processing.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "RHBZ#2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0286",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-03-22T10:38:31+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nFor the update to take effect, all services linked to the OpenSSL library must be restarted, or the system rebooted.",
"product_ids": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:1405"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.src",
"BaseOS-8.7.0.Z.MAIN:openssl-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-debugsource-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-devel-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.i686",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-libs-debuginfo-1:1.1.1k-9.el8_7.x86_64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.aarch64",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.ppc64le",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.s390x",
"BaseOS-8.7.0.Z.MAIN:openssl-perl-1:1.1.1k-9.el8_7.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: X.400 address type confusion in X.509 GeneralName"
}
]
}
RHSA-2023:2165
Vulnerability from csaf_redhat - Published: 2023-05-09 09:50 - Updated: 2026-04-30 03:18A flaw was found in edk2. A integer underflow in the SmmEntryPoint function leads to a write into the SMM region allowing a local attacker with administration privileges on the system to execute code within the SMM privileged context. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
A double-free vulnerability was found in OpenSSL's PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (for example, "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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
A use-after-free vulnerability was found in OpenSSL's BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
|
A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for edk2 is now available for Red Hat Enterprise Linux 9.\n\nRed 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.",
"title": "Topic"
},
{
"category": "general",
"text": "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. \n\nSecurity Fix(es):\n\n* openssl: X.400 address type confusion in X.509 GeneralName (CVE-2023-0286)\n\n* edk2: integer underflow in SmmEntryPoint function leads to potential SMM privilege escalation (CVE-2021-38578)\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 score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAdditional Changes:\n\nFor detailed information on changes in this release, see the Red Hat Enterprise Linux 9.2 Release Notes linked from the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2023:2165",
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/9.2_release_notes/index",
"url": "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/9.2_release_notes/index"
},
{
"category": "external",
"summary": "1960321",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=1960321"
},
{
"category": "external",
"summary": "1983086",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=1983086"
},
{
"category": "external",
"summary": "2125336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2125336"
},
{
"category": "external",
"summary": "2132951",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2132951"
},
{
"category": "external",
"summary": "2157656",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2157656"
},
{
"category": "external",
"summary": "2162307",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2162307"
},
{
"category": "external",
"summary": "2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "2168046",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2168046"
},
{
"category": "external",
"summary": "2174605",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2174605"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2023/rhsa-2023_2165.json"
}
],
"title": "Red Hat Security Advisory: edk2 security, bug fix, and enhancement update",
"tracking": {
"current_release_date": "2026-04-30T03:18:55+00:00",
"generator": {
"date": "2026-04-30T03:18:55+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.7"
}
},
"id": "RHSA-2023:2165",
"initial_release_date": "2023-05-09T09:50:46+00:00",
"revision_history": [
{
"date": "2023-05-09T09:50:46+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2023-05-09T09:50:46+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-04-30T03:18:55+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux CRB (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::crb"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"product": {
"name": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"product_id": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2@20221207gitfff6d81270b5-9.el9_2?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product": {
"name": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product_id": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-aarch64@20221207gitfff6d81270b5-9.el9_2?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product": {
"name": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product_id": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-ovmf@20221207gitfff6d81270b5-9.el9_2?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product": {
"name": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product_id": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-tools-doc@20221207gitfff6d81270b5-9.el9_2?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product": {
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product_id": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-tools@20221207gitfff6d81270b5-9.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product": {
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product_id": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-debugsource@20221207gitfff6d81270b5-9.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product": {
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product_id": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-tools-debuginfo@20221207gitfff6d81270b5-9.el9_2?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product": {
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product_id": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-tools@20221207gitfff6d81270b5-9.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product": {
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product_id": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-debugsource@20221207gitfff6d81270b5-9.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product": {
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product_id": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-tools-debuginfo@20221207gitfff6d81270b5-9.el9_2?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src"
},
"product_reference": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch"
},
"product_reference": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64"
},
"product_reference": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64"
},
"product_reference": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch"
},
"product_reference": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64"
},
"product_reference": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64"
},
"product_reference": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64"
},
"product_reference": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64"
},
"product_reference": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
},
"product_reference": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"relates_to_product_reference": "AppStream-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src"
},
"product_reference": "edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch"
},
"product_reference": "edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64"
},
"product_reference": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64"
},
"product_reference": "edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch"
},
"product_reference": "edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64"
},
"product_reference": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64"
},
"product_reference": "edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64"
},
"product_reference": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64"
},
"product_reference": "edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"relates_to_product_reference": "CRB-9.2.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch as a component of Red Hat Enterprise Linux CRB (v. 9)",
"product_id": "CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
},
"product_reference": "edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"relates_to_product_reference": "CRB-9.2.0.GA"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2021-38578",
"cwe": {
"id": "CWE-124",
"name": "Buffer Underwrite (\u0027Buffer Underflow\u0027)"
},
"discovery_date": "2021-05-11T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "1960321"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in edk2. A integer underflow in the SmmEntryPoint function leads to a write into the SMM region allowing a local attacker with administration privileges on the system to execute code within the SMM privileged context. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "edk2: integer underflow in SmmEntryPoint function leads to potential SMM privilege escalation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2021-38578"
},
{
"category": "external",
"summary": "RHBZ#1960321",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=1960321"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2021-38578",
"url": "https://www.cve.org/CVERecord?id=CVE-2021-38578"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-38578",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2021-38578"
}
],
"release_date": "2022-03-03T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-09T09:50:46+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "edk2: integer underflow in SmmEntryPoint function leads to potential SMM privilege escalation"
},
{
"cve": "CVE-2022-4304",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164487"
}
],
"notes": [
{
"category": "description",
"text": "A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: timing attack in RSA Decryption implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "RHBZ#2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4304",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4304"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-09T09:50:46+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: timing attack in RSA Decryption implementation"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164494"
}
],
"notes": [
{
"category": "description",
"text": "A double-free vulnerability was found in OpenSSL\u0027s PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (for example, \"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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: double free after calling PEM_read_bio_ex",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double-free vulnerability was found in the OpenSSL library in the PEM_read_bio_ex() function and its wrappers. The flaw is triggered when the library parses a specially crafted PEM file constructed to have zero bytes of payload data. This edge case causes the function to return a failure code but also populate a header argument with a pointer to memory that has already been freed, leading to a double-free condition if the calling application also attempts to free it, resulting in a crash and a denial of service. The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.\n\nThe versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are shipping OpenSSL 1.1.1 and 1.0.2, which do not contain the incorrect code, so those are not affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "RHBZ#2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4450",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4450"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-09T09:50:46+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: double free after calling PEM_read_bio_ex"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164492"
}
],
"notes": [
{
"category": "description",
"text": "A use-after-free vulnerability was found in OpenSSL\u0027s BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: use-after-free following BIO_new_NDEF",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was found in the OpenSSL library within the BIO_new_NDEF function, which is used for ASN.1 data streaming. The flaw is a use-after-free issue that happens when an error occurs while setting up a BIO chain. In this case, the filter BIO is freed, but the original BIO still holds a reference to it. If the caller later calls BIO_pop(), it tries to use this freed pointer, causing a crash and leading to a Denial of Service (DoS). The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "RHBZ#2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0215",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-09T09:50:46+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: use-after-free following BIO_new_NDEF"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164440"
}
],
"notes": [
{
"category": "description",
"text": "A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: X.400 address type confusion in X.509 GeneralName",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For shim in Red Hat Enterprise Linux 8 \u0026 9, is not affected as shim doesn\u0027t support any CRL processing.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "RHBZ#2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0286",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-09T09:50:46+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2165"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"AppStream-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"AppStream-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"AppStream-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-0:20221207gitfff6d81270b5-9.el9_2.src",
"CRB-9.2.0.GA:edk2-aarch64-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-debugsource-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-ovmf-0:20221207gitfff6d81270b5-9.el9_2.noarch",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.aarch64",
"CRB-9.2.0.GA:edk2-tools-debuginfo-0:20221207gitfff6d81270b5-9.el9_2.x86_64",
"CRB-9.2.0.GA:edk2-tools-doc-0:20221207gitfff6d81270b5-9.el9_2.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: X.400 address type confusion in X.509 GeneralName"
}
]
}
RHSA-2023:2932
Vulnerability from csaf_redhat - Published: 2023-05-16 08:49 - Updated: 2026-01-22 04:24A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
|
A double-free vulnerability was found in OpenSSL's PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (for example, "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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
|
A use-after-free vulnerability was found in OpenSSL's BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
|
A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An 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 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.",
"title": "Topic"
},
{
"category": "general",
"text": "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. \n\nSecurity Fix(es):\n\n* openssl: X.400 address type confusion in X.509 GeneralName (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 score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAdditional Changes:\n\nFor detailed information on changes in this release, see the Red Hat Enterprise Linux 8.8 Release Notes linked from the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2023:2932",
"url": "https://access.redhat.com/errata/RHSA-2023:2932"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/8.8_release_notes/index",
"url": "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/8.8_release_notes/index"
},
{
"category": "external",
"summary": "2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2023/rhsa-2023_2932.json"
}
],
"title": "Red Hat Security Advisory: edk2 security update",
"tracking": {
"current_release_date": "2026-01-22T04:24:29+00:00",
"generator": {
"date": "2026-01-22T04:24:29+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.15"
}
},
"id": "RHSA-2023:2932",
"initial_release_date": "2023-05-16T08:49:12+00:00",
"revision_history": [
{
"date": "2023-05-16T08:49:12+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2023-05-16T08:49:12+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-01-22T04:24:29+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 8)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.8.0.GA",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:8::appstream"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "edk2-0:20220126gitbb1bba3d77-4.el8.src",
"product": {
"name": "edk2-0:20220126gitbb1bba3d77-4.el8.src",
"product_id": "edk2-0:20220126gitbb1bba3d77-4.el8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2@20220126gitbb1bba3d77-4.el8?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"product": {
"name": "edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"product_id": "edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-aarch64@20220126gitbb1bba3d77-4.el8?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch",
"product": {
"name": "edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch",
"product_id": "edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/edk2-ovmf@20220126gitbb1bba3d77-4.el8?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-0:20220126gitbb1bba3d77-4.el8.src as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src"
},
"product_reference": "edk2-0:20220126gitbb1bba3d77-4.el8.src",
"relates_to_product_reference": "AppStream-8.8.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch"
},
"product_reference": "edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"relates_to_product_reference": "AppStream-8.8.0.GA"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)",
"product_id": "AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
},
"product_reference": "edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch",
"relates_to_product_reference": "AppStream-8.8.0.GA"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4304",
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164487"
}
],
"notes": [
{
"category": "description",
"text": "A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: timing attack in RSA Decryption implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "RHBZ#2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4304",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4304"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-16T08:49:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2932"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: timing attack in RSA Decryption implementation"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164494"
}
],
"notes": [
{
"category": "description",
"text": "A double-free vulnerability was found in OpenSSL\u0027s PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (for example, \"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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: double free after calling PEM_read_bio_ex",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double-free vulnerability was found in the OpenSSL library in the PEM_read_bio_ex() function and its wrappers. The flaw is triggered when the library parses a specially crafted PEM file constructed to have zero bytes of payload data. This edge case causes the function to return a failure code but also populate a header argument with a pointer to memory that has already been freed, leading to a double-free condition if the calling application also attempts to free it, resulting in a crash and a denial of service. The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.\n\nThe versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are shipping OpenSSL 1.1.1 and 1.0.2, which do not contain the incorrect code, so those are not affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "RHBZ#2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4450",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4450"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-16T08:49:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2932"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: double free after calling PEM_read_bio_ex"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164492"
}
],
"notes": [
{
"category": "description",
"text": "A use-after-free vulnerability was found in OpenSSL\u0027s BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: use-after-free following BIO_new_NDEF",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was found in the OpenSSL library within the BIO_new_NDEF function, which is used for ASN.1 data streaming. The flaw is a use-after-free issue that happens when an error occurs while setting up a BIO chain. In this case, the filter BIO is freed, but the original BIO still holds a reference to it. If the caller later calls BIO_pop(), it tries to use this freed pointer, causing a crash and leading to a Denial of Service (DoS). The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "RHBZ#2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0215",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-16T08:49:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2932"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: use-after-free following BIO_new_NDEF"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164440"
}
],
"notes": [
{
"category": "description",
"text": "A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: X.400 address type confusion in X.509 GeneralName",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For shim in Red Hat Enterprise Linux 8 \u0026 9, is not affected as shim doesn\u0027t support any CRL processing.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "RHBZ#2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0286",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-05-16T08:49:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:2932"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-8.8.0.GA:edk2-0:20220126gitbb1bba3d77-4.el8.src",
"AppStream-8.8.0.GA:edk2-aarch64-0:20220126gitbb1bba3d77-4.el8.noarch",
"AppStream-8.8.0.GA:edk2-ovmf-0:20220126gitbb1bba3d77-4.el8.noarch"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: X.400 address type confusion in X.509 GeneralName"
}
]
}
RHSA-2023:3354
Vulnerability from csaf_redhat - Published: 2023-06-05 12:30 - Updated: 2026-03-22 01:26A flaw was found in the mod_dav module of httpd. A specially crafted "If:" request header can cause a memory read or write of a single zero byte due to a missing error check, resulting in a Denial of Service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — |
A double-free vulnerability was found in OpenSSL's PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (for example, "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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — |
A flaw was found in the Apache Portable Runtime Utility (APR-util) library. This issue may allow a malicious attacker to cause an out-of-bounds write due to an integer overflow when encoding/decoding a very long string using the base64 family of functions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A vulnerability was found in curl. The issue can occur when curl's HSTS check is bypassed to trick it to keep using HTTP. Using its HSTS support, curl can be instructed to use HTTPS instead of an insecure clear-text HTTP step even when providing HTTP in the URL. Suppose the hostname in the given URL first uses IDN characters that get replaced with ASCII counterparts as part of the IDN conversion. In that case, it can bypass the HSTS mechanism using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop (U+002E). Then in a subsequent request, it does not detect the HSTS state and makes a clear text transfer. Because it would store the information, IDN encoded but looked for it as IDN decoded.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A vulnerability was found in curl. In this issue, curl can be asked to tunnel all protocols virtually it supports through an HTTP proxy. HTTP proxies can deny these tunnel operations using an appropriate HTTP error response code. When getting denied to tunnel the specific SMB or TELNET protocols, curl can use a heap-allocated struct after it has been freed and shut down the code path in its transfer.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
Workaround
|
A use-after-free vulnerability was found in OpenSSL's BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — |
A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — |
Workaround
|
A flaw was found in the Curl package, where the HSTS mechanism would be ignored by subsequent transfers when done on the same command line because the state would not be properly carried. This issue may result in limited confidentiality and integrity.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A flaw was found in the Curl package, where the HSTS mechanism could fail when multiple transfers are done in parallel, as the HSTS cache file gets overwritten by the most recently completed transfer. This issue may result in limited confidentiality and integrity.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A flaw was found in the Curl package. A malicious server can insert an unlimited number of compression steps. This decompression chain could result in out-of-memory errors.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A vulnerability was found in httpd. This security issue occurs when some mod_proxy configurations on Apache HTTP Server allow an HTTP Request Smuggling attack. Configurations are affected when mod_proxy is enabled along with some form of RewriteRule or ProxyPassMatch in which a non-specific pattern matches some portion of the user-supplied request-target (URL) data and is then re-inserted into the proxied request-target using variable substitution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A vulnerability in input validation exists in curl <8.0 during communication using the TELNET protocol may allow an attacker to pass on maliciously crafted user name and "telnet options" during server negotiation. The lack of proper input scrubbing allows an attacker to send content or perform option negotiation without the application's intent. This vulnerability could be exploited if an application allows user input, thereby enabling attackers to execute arbitrary code on the system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
A path traversal vulnerability exists in curl <8.0.0 SFTP implementation causes the tilde (~) character to be wrongly replaced when used as a prefix in the first path element, in addition to its intended use as the first element to indicate a path relative to the user's home directory. Attackers can exploit this flaw to bypass filtering or execute arbitrary code by crafting a path like /~2/foo while accessing a server with a specific user.
CWE-22 - Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 | — | ||
| Unresolved product id: 7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 | — | ||
| Unresolved product id: 8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update is now available for Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Service Pack 2 on Red Hat Enterprise Linux versions 7 and 8.\n\nRed 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.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat JBoss Core Services is a set of supplementary software for Red Hat JBoss middleware products. This software, such as Apache HTTP Server, is common to multiple JBoss middleware products, and is packaged under Red Hat JBoss Core Services to allow for faster distribution of updates, and for a more consistent update experience.\n\nThis release of Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Service Pack 2 serves as a replacement for Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Service Pack 1, and includes bug fixes and enhancements, which are documented in the Release Notes document linked to in the References.\n\nSecurity Fix(es):\n\n* apr-util: out-of-bounds writes in the apr_base64 (CVE-2022-25147)\n* curl: HSTS bypass via IDN (CVE-2022-43551)\n* curl: HTTP Proxy deny use-after-free (CVE-2022-43552)\n* curl: HSTS ignored on multiple requests (CVE-2023-23914)\n* curl: HSTS amnesia with --parallel (CVE-2023-23915)\n* curl: HTTP multi-header compression denial of service (CVE-2023-23916)\n* curl: TELNET option IAC injection (CVE-2023-27533)\n* curl: SFTP path ~ resolving discrepancy (CVE-2023-27534)\n* httpd: mod_dav: out-of-bounds read/write of zero byte (CVE-2006-20001)\n* httpd: HTTP request splitting with mod_rewrite and mod_proxy (CVE-2023-25690)\n* openssl: timing attack in RSA Decryption implementation (CVE-2022-4304)\n* openssl: double free after calling PEM_read_bio_ex (CVE-2022-4450)\n* openssl: use-after-free following BIO_new_NDEF (CVE-2023-0215)\n* openssl: X.400 address type confusion in X.509 GeneralName (CVE-2023-0286)\n\nFor 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.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2023:3354",
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2152639",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2152639"
},
{
"category": "external",
"summary": "2152652",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2152652"
},
{
"category": "external",
"summary": "2161774",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2161774"
},
{
"category": "external",
"summary": "2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "2167797",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2167797"
},
{
"category": "external",
"summary": "2167813",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2167813"
},
{
"category": "external",
"summary": "2167815",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2167815"
},
{
"category": "external",
"summary": "2169652",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2169652"
},
{
"category": "external",
"summary": "2176209",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2176209"
},
{
"category": "external",
"summary": "2179062",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2179062"
},
{
"category": "external",
"summary": "2179069",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2179069"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2023/rhsa-2023_3354.json"
}
],
"title": "Red Hat Security Advisory: Red Hat JBoss Core Services Apache HTTP Server 2.4.51 SP2 security update",
"tracking": {
"current_release_date": "2026-03-22T01:26:54+00:00",
"generator": {
"date": "2026-03-22T01:26:54+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.3"
}
},
"id": "RHSA-2023:3354",
"initial_release_date": "2023-06-05T12:30:30+00:00",
"revision_history": [
{
"date": "2023-06-05T12:30:30+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2023-07-18T17:32:46+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-03-22T01:26:54+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat JBoss Core Services on RHEL 7 Server",
"product": {
"name": "Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:jboss_core_services:1::el7"
}
}
},
{
"category": "product_name",
"name": "Red Hat JBoss Core Services on RHEL 8",
"product": {
"name": "Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:jboss_core_services:1::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat JBoss Core Services"
},
{
"branches": [
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"product_id": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl@1.1.1k-14.el7jbcs?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"product_id": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.0.1-1.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"product_id": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-pkcs11@0.4.10-33.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"product_id": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-chil@1.0.0-18.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"product_id": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.51-39.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.18-2.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"product_id": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-24.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"product_id": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-20.el7jbcs?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"product_id": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-23.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"product_id": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk@1.2.48-46.redhat_1.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"product": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"product_id": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util@1.6.1-101.el7jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"product_id": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl@1.1.1k-14.el8jbcs?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"product_id": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.0.1-1.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"product_id": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-pkcs11@0.4.10-33.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"product_id": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-chil@1.0.0-18.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"product_id": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.51-39.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.18-2.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"product_id": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-20.el8jbcs?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"product_id": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-24.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"product_id": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-23.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"product_id": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk@1.2.48-46.redhat_1.el8jbcs?arch=src"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"product": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"product_id": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util@1.6.1-101.el8jbcs?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl@1.1.1k-14.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-devel@1.1.1k-14.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-libs@1.1.1k-14.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-perl@1.1.1k-14.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-static@1.1.1k-14.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-debuginfo@1.1.1k-14.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.0.1-1.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl@8.0.1-1.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl-devel@8.0.1-1.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-curl-debuginfo@8.0.1-1.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-pkcs11@0.4.10-33.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-pkcs11-debuginfo@0.4.10-33.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-chil@1.0.0-18.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-chil-debuginfo@1.0.0-18.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-devel@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-selinux@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-tools@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ldap@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_html@2.4.51-39.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_session@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ssl@2.4.51-39.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-debuginfo@2.4.51-39.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.18-2.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster-debuginfo@1.3.18-2.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-24.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security-debuginfo@2.9.3-24.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-20.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md-debuginfo@2.4.0-20.el7jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-23.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2-debuginfo@1.15.19-23.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-ap24@1.2.48-46.redhat_1.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-debuginfo@1.2.48-46.redhat_1.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-devel@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-ldap@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-mysql@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-nss@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-odbc@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-openssl@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-pgsql@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-sqlite@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-debuginfo@1.6.1-101.el7jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-devel@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-libs@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-perl@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-static@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-debuginfo@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-libs-debuginfo@1.1.1k-14.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.0.1-1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl@8.0.1-1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl-devel@8.0.1-1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-curl-debuginfo@8.0.1-1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl-debuginfo@8.0.1-1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-pkcs11@0.4.10-33.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-pkcs11-debuginfo@0.4.10-33.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-chil@1.0.0-18.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-openssl-chil-debuginfo@1.0.0-18.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-devel@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-selinux@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-tools@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ldap@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_html@2.4.51-39.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_session@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ssl@2.4.51-39.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-debuginfo@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-tools-debuginfo@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ldap-debuginfo@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_html-debuginfo@2.4.51-39.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_session-debuginfo@2.4.51-39.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ssl-debuginfo@2.4.51-39.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.18-2.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster-debuginfo@1.3.18-2.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-20.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md-debuginfo@2.4.0-20.el8jbcs?arch=x86_64\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-24.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security-debuginfo@2.9.3-24.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-23.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2-debuginfo@1.15.19-23.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-ap24@1.2.48-46.redhat_1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-ap24-debuginfo@1.2.48-46.redhat_1.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-devel@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-ldap@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-mysql@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-nss@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-odbc@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-openssl@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-pgsql@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-sqlite@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-ldap-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-mysql-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-nss-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-odbc-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-openssl-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-pgsql-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product": {
"name": "jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_id": "jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-apr-util-sqlite-debuginfo@1.6.1-101.el8jbcs?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"product": {
"name": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"product_id": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-manual@2.4.51-39.el7jbcs?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"product": {
"name": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"product_id": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-manual@2.4.51-39.el8jbcs?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch"
},
"product_reference": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src"
},
"product_reference": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server",
"product_id": "7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"relates_to_product_reference": "7Server-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch"
},
"product_reference": "jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src"
},
"product_reference": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8",
"product_id": "8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
},
"product_reference": "jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64",
"relates_to_product_reference": "8Base-JBCS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2006-20001",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2023-01-17T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2161774"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the mod_dav module of httpd. A specially crafted \"If:\" request header can cause a memory read or write of a single zero byte due to a missing error check, resulting in a Denial of Service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "httpd: mod_dav: out-of-bounds read/write of zero byte",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw only affects configurations with mod_dav loaded and configured. Also, if there is no WebDAV repository configured, the server is not affected and no further mitigation is needed. For more information about the mitigation, check the mitigation section below.\n\nThe httpd mod_dav module is enabled by default on Red Hat Enterprise Linux 6, 7, 8, 9, and in RHSCL. However, there is no WebDAV repository configured by default.\n\nThis flaw has been rated as having a security impact of moderate, and is not currently planned to be addressed in future updates of Red Hat Enterprise Linux 7. Red Hat Enterprise Linux 7 is now in Maintenance Support 2 Phase of the support and maintenance life cycle. For additional information, refer to the Red Hat Enterprise Linux Life Cycle: https://access.redhat.com/support/policy/updates/errata.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2006-20001"
},
{
"category": "external",
"summary": "RHBZ#2161774",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2161774"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2006-20001",
"url": "https://www.cve.org/CVERecord?id=CVE-2006-20001"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2006-20001",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2006-20001"
},
{
"category": "external",
"summary": "https://httpd.apache.org/security/vulnerabilities_24.html#CVE-2006-20001",
"url": "https://httpd.apache.org/security/vulnerabilities_24.html#CVE-2006-20001"
}
],
"release_date": "2023-01-17T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
},
{
"category": "workaround",
"details": "Disabling mod_dav and restarting httpd will mitigate this flaw.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "httpd: mod_dav: out-of-bounds read/write of zero byte"
},
{
"cve": "CVE-2022-4304",
"discovery_date": "2023-01-25T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164487"
}
],
"notes": [
{
"category": "description",
"text": "A timing-based side channel exists in the OpenSSL RSA Decryption implementation, which could be sufficient to recover a ciphertext across a network in a Bleichenbacher style attack. To achieve a successful decryption, an attacker would have to be able to send a very large number of trial messages for decryption. This issue affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP, and RSASVE.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: timing attack in RSA Decryption implementation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4304"
},
{
"category": "external",
"summary": "RHBZ#2164487",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164487"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4304",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4304"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: timing attack in RSA Decryption implementation"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164494"
}
],
"notes": [
{
"category": "description",
"text": "A double-free vulnerability was found in OpenSSL\u0027s PEM_read_bio_ex function. The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (for example, \"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. Constructing a PEM file that results in 0 bytes of payload data is possible. In this case, PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a freed buffer. A double-free will occur if the caller also frees this buffer. This will most likely lead to a crash. This could be exploited by an attacker who can supply malicious PEM files for parsing to achieve a denial of service attack.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: double free after calling PEM_read_bio_ex",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double-free vulnerability was found in the OpenSSL library in the PEM_read_bio_ex() function and its wrappers. The flaw is triggered when the library parses a specially crafted PEM file constructed to have zero bytes of payload data. This edge case causes the function to return a failure code but also populate a header argument with a pointer to memory that has already been freed, leading to a double-free condition if the calling application also attempts to free it, resulting in a crash and a denial of service. The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.\n\nThe versions of `shim` as shipped with Red Hat Enterprise Linux 8 and 9 are shipping OpenSSL 1.1.1 and 1.0.2, which do not contain the incorrect code, so those are not affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-4450"
},
{
"category": "external",
"summary": "RHBZ#2164494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-4450",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-4450"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: double free after calling PEM_read_bio_ex"
},
{
"cve": "CVE-2022-25147",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2023-02-14T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2169652"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Apache Portable Runtime Utility (APR-util) library. This issue may allow a malicious attacker to cause an out-of-bounds write due to an integer overflow when encoding/decoding a very long string using the base64 family of functions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "apr-util: out-of-bounds writes in the apr_base64",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The Apache Portable Runtime Utility (APR-util) library contains additional utility interfaces for APR (Apache Portable Runtime). \nThis vulnerability is related to the incorrect usage of the base64 encoding/decoding family of functions through APR-util API.\nUsage of these functions with long enough string would cause integer overflow and will lead to out-of-bound write.\n\nThis flaw was rated with an important severity for a moment as Red Hat received information that this vulnerability potentially can allow remote attackers to cause a denial of service to the application linked to the APR-util library. Deep analysis confirmed that there are no known conditions that could lead to DoS. \nAdditionally the APR-util API should not be exposed to the untrusted uploads and usage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-25147"
},
{
"category": "external",
"summary": "RHBZ#2169652",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2169652"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-25147",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-25147"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-25147",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-25147"
}
],
"release_date": "2023-01-31T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "apr-util: out-of-bounds writes in the apr_base64"
},
{
"cve": "CVE-2022-43551",
"cwe": {
"id": "CWE-319",
"name": "Cleartext Transmission of Sensitive Information"
},
"discovery_date": "2022-12-12T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2152639"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability was found in curl. The issue can occur when curl\u0027s HSTS check is bypassed to trick it to keep using HTTP. Using its HSTS support, curl can be instructed to use HTTPS instead of an insecure clear-text HTTP step even when providing HTTP in the URL. Suppose the hostname in the given URL first uses IDN characters that get replaced with ASCII counterparts as part of the IDN conversion. In that case, it can bypass the HSTS mechanism using the character UTF-8 U+3002 (IDEOGRAPHIC FULL STOP) instead of the common ASCII full stop (U+002E). Then in a subsequent request, it does not detect the HSTS state and makes a clear text transfer. Because it would store the information, IDN encoded but looked for it as IDN decoded.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: HSTS bypass via IDN",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-43551"
},
{
"category": "external",
"summary": "RHBZ#2152639",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2152639"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-43551",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-43551"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-43551",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-43551"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2022-43551.html",
"url": "https://curl.se/docs/CVE-2022-43551.html"
}
],
"release_date": "2022-12-21T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "curl: HSTS bypass via IDN"
},
{
"cve": "CVE-2022-43552",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2022-12-12T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2152652"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability was found in curl. In this issue, curl can be asked to tunnel all protocols virtually it supports through an HTTP proxy. HTTP proxies can deny these tunnel operations using an appropriate HTTP error response code. When getting denied to tunnel the specific SMB or TELNET protocols, curl can use a heap-allocated struct after it has been freed and shut down the code path in its transfer.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: Use-after-free triggered by an HTTP proxy deny response",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Potential successful exploitation will cause the curl to crash, which generates a low impact to the environment where the curl is used. Additionally, exploitation depends on the conditions that are out of the attacker\u0027s control, like usage of specific protocols (SMB or TELNET) and HTTP proxy tunnels at the same time. Due to these facts, this vulnerability has been classified as a Low severity issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2022-43552"
},
{
"category": "external",
"summary": "RHBZ#2152652",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2152652"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2022-43552",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-43552"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-43552",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-43552"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2022-43552.html",
"url": "https://curl.se/docs/CVE-2022-43552.html"
}
],
"release_date": "2022-12-21T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
},
{
"category": "workaround",
"details": "Avoid using the SMB and TELNET protocols.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "curl: Use-after-free triggered by an HTTP proxy deny response"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164492"
}
],
"notes": [
{
"category": "description",
"text": "A use-after-free vulnerability was found in OpenSSL\u0027s BIO_new_NDEF function. The public API function BIO_new_NDEF is a helper function used for streaming ASN.1 data via a BIO. It is primarily used internally by OpenSSL to support the SMIME, CMS, and PKCS7 streaming capabilities, but it may also be called directly by end-user applications. The function receives a BIO from the caller, prepends a new BIO_f_asn1 filter BIO onto the front of it to form a BIO chain, and then returns the new head of the BIO chain to the caller. Under certain conditions. For example, if a CMS recipient public key is invalid, the new filter BIO is freed, and the function returns a NULL result indicating a failure. However, in this case, the BIO chain is not properly cleaned up, and the BIO passed by the caller still retains internal pointers to the previously freed filter BIO. If the caller then calls BIO_pop() on the BIO, a use-after-free will occur, possibly resulting in a crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: use-after-free following BIO_new_NDEF",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw was found in the OpenSSL library within the BIO_new_NDEF function, which is used for ASN.1 data streaming. The flaw is a use-after-free issue that happens when an error occurs while setting up a BIO chain. In this case, the filter BIO is freed, but the original BIO still holds a reference to it. If the caller later calls BIO_pop(), it tries to use this freed pointer, causing a crash and leading to a Denial of Service (DoS). The flaw is rated as moderate because it results in a crash but does not allow code execution, memory corruption beyond the crash, or data leakage.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0215"
},
{
"category": "external",
"summary": "RHBZ#2164492",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164492"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0215",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"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"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: use-after-free following BIO_new_NDEF"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"discovery_date": "2023-01-25T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2164440"
}
],
"notes": [
{
"category": "description",
"text": "A type confusion vulnerability was found in OpenSSL when OpenSSL X.400 addresses processing inside an X.509 GeneralName. When CRL checking is enabled (for example, the application sets the X509_V_FLAG_CRL_CHECK flag), this vulnerability may allow an attacker to pass arbitrary pointers to a memcmp call, enabling them to read memory contents or cause a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, of which neither needs a valid signature. If the attacker only controls one of these inputs, the other input must already contain an X.400 address as a CRL distribution point, which is uncommon. In this case, this vulnerability is likely only to affect applications that have implemented their own functionality for retrieving CRLs over a network.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: X.400 address type confusion in X.509 GeneralName",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "For shim in Red Hat Enterprise Linux 8 \u0026 9, is not affected as shim doesn\u0027t support any CRL processing.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-0286"
},
{
"category": "external",
"summary": "RHBZ#2164440",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2164440"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-0286",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-0286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
},
{
"category": "external",
"summary": "https://www.openssl.org/news/secadv/20230207.txt",
"url": "https://www.openssl.org/news/secadv/20230207.txt"
}
],
"release_date": "2023-02-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssl: X.400 address type confusion in X.509 GeneralName"
},
{
"acknowledgments": [
{
"names": [
"Harry Sintonen"
]
}
],
"cve": "CVE-2023-23914",
"cwe": {
"id": "CWE-319",
"name": "Cleartext Transmission of Sensitive Information"
},
"discovery_date": "2023-02-07T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2167797"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Curl package, where the HSTS mechanism would be ignored by subsequent transfers when done on the same command line because the state would not be properly carried. This issue may result in limited confidentiality and integrity.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: HSTS ignored on multiple requests",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is a curl command line issue and does not affect libcurl.\nThere is no HSTS support in the versions of curl shipped in rhel-7 and rhel-8. Curl packages as shipped in rhel-9 do not support HSTS.\nUpstream has rated this as a Low Severity issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-23914"
},
{
"category": "external",
"summary": "RHBZ#2167797",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2167797"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-23914",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-23914"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-23914",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-23914"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2023-23914.html",
"url": "https://curl.se/docs/CVE-2023-23914.html"
}
],
"release_date": "2023-02-15T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "curl: HSTS ignored on multiple requests"
},
{
"acknowledgments": [
{
"names": [
"Harry Sintonen"
]
}
],
"cve": "CVE-2023-23915",
"cwe": {
"id": "CWE-319",
"name": "Cleartext Transmission of Sensitive Information"
},
"discovery_date": "2023-02-07T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2167813"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Curl package, where the HSTS mechanism could fail when multiple transfers are done in parallel, as the HSTS cache file gets overwritten by the most recently completed transfer. This issue may result in limited confidentiality and integrity.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: HSTS amnesia with --parallel",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "There is no HSTS support in the versions of curl shipped in rhel-7 and rhel-8. Curl packages as shipped in rhel-9 do not support HSTS.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-23915"
},
{
"category": "external",
"summary": "RHBZ#2167813",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2167813"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-23915",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-23915"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-23915",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-23915"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2023-23915.html",
"url": "https://curl.se/docs/CVE-2023-23915.html"
}
],
"release_date": "2023-02-15T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.2,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "curl: HSTS amnesia with --parallel"
},
{
"acknowledgments": [
{
"names": [
"Patrick Monnerat"
]
}
],
"cve": "CVE-2023-23916",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2023-02-07T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2167815"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Curl package. A malicious server can insert an unlimited number of compression steps. This decompression chain could result in out-of-memory errors.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: HTTP multi-header compression denial of service",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-23916"
},
{
"category": "external",
"summary": "RHBZ#2167815",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2167815"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-23916",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-23916"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-23916",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-23916"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2023-23916.html",
"url": "https://curl.se/docs/CVE-2023-23916.html"
}
],
"release_date": "2023-02-15T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "curl: HTTP multi-header compression denial of service"
},
{
"cve": "CVE-2023-25690",
"cwe": {
"id": "CWE-113",
"name": "Improper Neutralization of CRLF Sequences in HTTP Headers (\u0027HTTP Request/Response Splitting\u0027)"
},
"discovery_date": "2023-03-07T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2176209"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability was found in httpd. This security issue occurs when some mod_proxy configurations on Apache HTTP Server allow an HTTP Request Smuggling attack. Configurations are affected when mod_proxy is enabled along with some form of RewriteRule or ProxyPassMatch in which a non-specific pattern matches some portion of the user-supplied request-target (URL) data and is then re-inserted into the proxied request-target using variable substitution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "httpd: HTTP request splitting with mod_rewrite and mod_proxy",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-25690"
},
{
"category": "external",
"summary": "RHBZ#2176209",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2176209"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-25690",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-25690"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-25690",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-25690"
},
{
"category": "external",
"summary": "https://httpd.apache.org/security/vulnerabilities_24.html",
"url": "https://httpd.apache.org/security/vulnerabilities_24.html"
}
],
"release_date": "2023-03-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "httpd: HTTP request splitting with mod_rewrite and mod_proxy"
},
{
"acknowledgments": [
{
"names": [
"Daniel Stenberg",
"Harry Sintonen"
]
}
],
"cve": "CVE-2023-27533",
"cwe": {
"id": "CWE-75",
"name": "Failure to Sanitize Special Elements into a Different Plane (Special Element Injection)"
},
"discovery_date": "2023-03-16T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2179062"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in input validation exists in curl \u003c8.0 during communication using the TELNET protocol may allow an attacker to pass on maliciously crafted user name and \"telnet options\" during server negotiation. The lack of proper input scrubbing allows an attacker to send content or perform option negotiation without the application\u0027s intent. This vulnerability could be exploited if an application allows user input, thereby enabling attackers to execute arbitrary code on the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: TELNET option IAC injection",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "While this vulnerability exists in Curl, the potential impact is to a different component. The overall impact is limited to the telnet component. On its own this flaw has a limited to negligible effect on integrity of the entire system, therefore it has been rated as having a Low security impact. This is in alignment with upstream\u2019s impact assessment, their advisory is linked in external references.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-27533"
},
{
"category": "external",
"summary": "RHBZ#2179062",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2179062"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-27533",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-27533"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-27533",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-27533"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2023-27533.html",
"url": "https://curl.se/docs/CVE-2023-27533.html"
}
],
"release_date": "2023-03-20T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "curl: TELNET option IAC injection"
},
{
"acknowledgments": [
{
"names": [
"Daniel Stenberg",
"Harry Sintonen"
]
}
],
"cve": "CVE-2023-27534",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2023-03-16T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2179069"
}
],
"notes": [
{
"category": "description",
"text": "A path traversal vulnerability exists in curl \u003c8.0.0 SFTP implementation causes the tilde (~) character to be wrongly replaced when used as a prefix in the first path element, in addition to its intended use as the first element to indicate a path relative to the user\u0027s home directory. Attackers can exploit this flaw to bypass filtering or execute arbitrary code by crafting a path like /~2/foo while accessing a server with a specific user.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "curl: SFTP path ~ resolving discrepancy",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In a containerized environment running SELinux in enforcing mode, such as Red Hat OpenShift Container Platform, this vulnerability does not allow an attacker to escape the boundary of a container. In this case no additional access is gained, there is an additional (but more complicated step) to look at files the user already has access to.\n\nThe upstream project (Curl) also rated this CVE as Low, see link in External References.\n\nIt is unlikely that Red Hat offerings are utilizing the SFTP feature of Curl, so the opportunity to exploit it may not exist. For those reasons Red Hat Product Security rates the impact as Low.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"known_not_affected": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-27534"
},
{
"category": "external",
"summary": "RHBZ#2179069",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2179069"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-27534",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-27534"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-27534",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-27534"
},
{
"category": "external",
"summary": "https://curl.se/docs/CVE-2023-27534.html",
"url": "https://curl.se/docs/CVE-2023-27534.html"
}
],
"release_date": "2023-03-20T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2023-06-05T12:30:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nApplications using the APR libraries, such as httpd, must be restarted for this update to take effect. After installing the updated packages, the httpd daemon will be restarted automatically.",
"product_ids": [
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2023:3354"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 3.7,
"baseSeverity": "LOW",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N",
"version": "3.1"
},
"products": [
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el7jbcs.noarch",
"7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-46.redhat_1.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.src",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el7jbcs.x86_64",
"7Server-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el7jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-apr-util-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-devel-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-ldap-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-mysql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-nss-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-odbc-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-openssl-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-pgsql-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-apr-util-sqlite-debuginfo-0:1.6.1-101.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-curl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-httpd-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.51-39.el8jbcs.noarch",
"8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.0.1-1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-23.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-46.redhat_1.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-46.redhat_1.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-20.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.18-2.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-24.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.51-39.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-chil-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-chil-debuginfo-0:1.0.0-18.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-devel-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-libs-debuginfo-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-perl-1:1.1.1k-14.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.src",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-pkcs11-debuginfo-0:0.4.10-33.el8jbcs.x86_64",
"8Base-JBCS:jbcs-httpd24-openssl-static-1:1.1.1k-14.el8jbcs.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "curl: SFTP path ~ resolving discrepancy"
}
]
}
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.