Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2022-4450 (GCVE-0-2022-4450)
Vulnerability from cvelistv5 – Published: 2023-02-08 19:04 – Updated: 2025-11-04 19:14- double-free
- CWE-415 - Double Free
{
"containers": {
"adp": [
{
"providerMetadata": {
"dateUpdated": "2025-11-04T19:14:13.257Z",
"orgId": "af854a3a-2127-422b-91ae-364da2661108",
"shortName": "CVE"
},
"references": [
{
"name": "OpenSSL Advisory",
"tags": [
"vendor-advisory",
"x_transferred"
],
"url": "https://www.openssl.org/news/secadv/20230207.txt"
},
{
"name": "3.0.8 git commit",
"tags": [
"patch",
"x_transferred"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83"
},
{
"name": "1.1.1t git commit",
"tags": [
"patch",
"x_transferred"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b"
},
{
"tags": [
"x_transferred"
],
"url": "https://security.gentoo.org/glsa/202402-08"
},
{
"url": "https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0003"
}
],
"title": "CVE Program Container"
},
{
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
}
},
{
"other": {
"content": {
"id": "CVE-2022-4450",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2025-04-23T13:26:38.705489Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-415",
"description": "CWE-415 Double Free",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-08-27T20:32:52.583Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "OpenSSL",
"vendor": "OpenSSL",
"versions": [
{
"lessThan": "3.0.8",
"status": "affected",
"version": "3.0.0",
"versionType": "semver"
},
{
"lessThan": "1.1.1t",
"status": "affected",
"version": "1.1.1",
"versionType": "custom"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "finder",
"user": "00000000-0000-4000-9000-000000000000",
"value": "CarpetFuzz"
},
{
"lang": "en",
"type": "reporter",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Dawei Wang"
},
{
"lang": "en",
"type": "reporter",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Marc Sch\u00f6nefeld"
},
{
"lang": "en",
"type": "remediation developer",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Kurt Roeckx"
},
{
"lang": "en",
"type": "remediation developer",
"user": "00000000-0000-4000-9000-000000000000",
"value": "Matt Caswell"
}
],
"datePublic": "2023-02-07T00:00:00.000Z",
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\u003cbr\u003edecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\u003cbr\u003eIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\u003cbr\u003epopulated with pointers to buffers containing the relevant decoded data. The\u003cbr\u003ecaller is responsible for freeing those buffers. It is possible to construct a\u003cbr\u003ePEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\u003cbr\u003ewill return a failure code but will populate the header argument with a pointer\u003cbr\u003eto a buffer that has already been freed. If the caller also frees this buffer\u003cbr\u003ethen a double free will occur. This will most likely lead to a crash. This\u003cbr\u003ecould be exploited by an attacker who has the ability to supply malicious PEM\u003cbr\u003efiles for parsing to achieve a denial of service attack.\u003cbr\u003e\u003cbr\u003eThe functions PEM_read_bio() and PEM_read() are simple wrappers around\u003cbr\u003ePEM_read_bio_ex() and therefore these functions are also directly affected.\u003cbr\u003e\u003cbr\u003eThese functions are also called indirectly by a number of other OpenSSL\u003cbr\u003efunctions including PEM_X509_INFO_read_bio_ex() and\u003cbr\u003eSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\u003cbr\u003euses of these functions are not vulnerable because the caller does not free the\u003cbr\u003eheader argument if PEM_read_bio_ex() returns a failure code. These locations\u003cbr\u003einclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\u003cbr\u003eOpenSSL 3.0.\u003cbr\u003e\u003cbr\u003e\u003cdiv\u003eThe OpenSSL asn1parse command line application is also impacted by this issue.\u003c/div\u003e\u003cbr\u003e"
}
],
"value": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\ndecodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data.\nIf the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The\ncaller is responsible for freeing those buffers. It is possible to construct a\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\nwill return a failure code but will populate the header argument with a pointer\nto a buffer that has already been freed. If the caller also frees this buffer\nthen a double free will occur. This will most likely lead to a crash. This\ncould be exploited by an attacker who has the ability to supply malicious PEM\nfiles for parsing to achieve a denial of service attack.\n\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected.\n\nThese functions are also called indirectly by a number of other OpenSSL\nfunctions including PEM_X509_INFO_read_bio_ex() and\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\nuses of these functions are not vulnerable because the caller does not free the\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\nOpenSSL 3.0.\n\nThe OpenSSL asn1parse command line application is also impacted by this issue."
}
],
"metrics": [
{
"format": "other",
"other": {
"content": {
"text": "Moderate"
},
"type": "https://www.openssl.org/policies/secpolicy.html"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"description": "double-free",
"lang": "en"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2024-02-04T09:06:50.535Z",
"orgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"shortName": "openssl"
},
"references": [
{
"name": "OpenSSL Advisory",
"tags": [
"vendor-advisory"
],
"url": "https://www.openssl.org/news/secadv/20230207.txt"
},
{
"name": "3.0.8 git commit",
"tags": [
"patch"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83"
},
{
"name": "1.1.1t git commit",
"tags": [
"patch"
],
"url": "https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b"
},
{
"url": "https://security.gentoo.org/glsa/202402-08"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Double free after calling PEM_read_bio_ex",
"x_generator": {
"engine": "Vulnogram 0.1.0-dev"
}
}
},
"cveMetadata": {
"assignerOrgId": "3a12439a-ef3a-4c79-92e6-6081a721f1e5",
"assignerShortName": "openssl",
"cveId": "CVE-2022-4450",
"datePublished": "2023-02-08T19:04:04.874Z",
"dateReserved": "2022-12-13T13:38:08.598Z",
"dateUpdated": "2025-11-04T19:14:13.257Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2022-4450",
"date": "2026-06-22",
"epss": "0.20444",
"percentile": "0.97163"
},
"fkie_nvd": {
"configurations": "[{\"nodes\": [{\"operator\": \"OR\", \"negate\": false, \"cpeMatch\": [{\"vulnerable\": true, \"criteria\": \"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"1.1.1\", \"versionEndExcluding\": \"1.1.1t\", \"matchCriteriaId\": \"DE0061D6-8F81-45D3-B254-82A94915FD08\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"3.0.0\", \"versionEndExcluding\": \"3.0.8\", \"matchCriteriaId\": \"A6DC5D88-4E99-48F2-8892-610ACA9B5B86\"}]}]}, {\"nodes\": [{\"operator\": \"OR\", \"negate\": false, \"cpeMatch\": [{\"vulnerable\": true, \"criteria\": \"cpe:2.3:a:stormshield:stormshield_network_security:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"4.0.0\", \"versionEndExcluding\": \"4.3.16\", \"matchCriteriaId\": \"F7794B42-8235-4C75-866F-5D0A405F0989\"}, {\"vulnerable\": true, \"criteria\": \"cpe:2.3:a:stormshield:stormshield_network_security:*:*:*:*:*:*:*:*\", \"versionStartIncluding\": \"4.4.0\", \"versionEndExcluding\": \"4.6.3\", \"matchCriteriaId\": \"C8A23A5D-928A-4225-9C93-31E5DFE215A7\"}]}]}]",
"descriptions": "[{\"lang\": \"en\", \"value\": \"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\\ndecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\\nIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\\npopulated with pointers to buffers containing the relevant decoded data. The\\ncaller is responsible for freeing those buffers. It is possible to construct a\\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\\nwill return a failure code but will populate the header argument with a pointer\\nto a buffer that has already been freed. If the caller also frees this buffer\\nthen a double free will occur. This will most likely lead to a crash. This\\ncould be exploited by an attacker who has the ability to supply malicious PEM\\nfiles for parsing to achieve a denial of service attack.\\n\\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\\nPEM_read_bio_ex() and therefore these functions are also directly affected.\\n\\nThese functions are also called indirectly by a number of other OpenSSL\\nfunctions including PEM_X509_INFO_read_bio_ex() and\\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\\nuses of these functions are not vulnerable because the caller does not free the\\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\\nOpenSSL 3.0.\\n\\nThe OpenSSL asn1parse command line application is also impacted by this issue.\\n\\n\\n\"}]",
"id": "CVE-2022-4450",
"lastModified": "2024-11-21T07:35:17.197",
"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}]}",
"published": "2023-02-08T20:15:23.973",
"references": "[{\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\", \"source\": \"openssl-security@openssl.org\", \"tags\": [\"Patch\", \"Vendor Advisory\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\", \"source\": \"openssl-security@openssl.org\", \"tags\": [\"Patch\", \"Vendor Advisory\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\", \"source\": \"openssl-security@openssl.org\"}, {\"url\": \"https://www.openssl.org/news/secadv/20230207.txt\", \"source\": \"openssl-security@openssl.org\", \"tags\": [\"Vendor Advisory\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\", \"source\": \"af854a3a-2127-422b-91ae-364da2661108\", \"tags\": [\"Patch\", \"Vendor Advisory\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\", \"source\": \"af854a3a-2127-422b-91ae-364da2661108\", \"tags\": [\"Patch\", \"Vendor Advisory\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\", \"source\": \"af854a3a-2127-422b-91ae-364da2661108\"}, {\"url\": \"https://www.openssl.org/news/secadv/20230207.txt\", \"source\": \"af854a3a-2127-422b-91ae-364da2661108\", \"tags\": [\"Vendor Advisory\"]}]",
"sourceIdentifier": "openssl-security@openssl.org",
"vulnStatus": "Modified",
"weaknesses": "[{\"source\": \"nvd@nist.gov\", \"type\": \"Primary\", \"description\": [{\"lang\": \"en\", \"value\": \"CWE-415\"}]}]"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2022-4450\",\"sourceIdentifier\":\"openssl-security@openssl.org\",\"published\":\"2023-02-08T20:15:23.973\",\"lastModified\":\"2025-11-04T20:16:15.060\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\\ndecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\\nIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\\npopulated with pointers to buffers containing the relevant decoded data. The\\ncaller is responsible for freeing those buffers. It is possible to construct a\\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\\nwill return a failure code but will populate the header argument with a pointer\\nto a buffer that has already been freed. If the caller also frees this buffer\\nthen a double free will occur. This will most likely lead to a crash. This\\ncould be exploited by an attacker who has the ability to supply malicious PEM\\nfiles for parsing to achieve a denial of service attack.\\n\\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\\nPEM_read_bio_ex() and therefore these functions are also directly affected.\\n\\nThese functions are also called indirectly by a number of other OpenSSL\\nfunctions including PEM_X509_INFO_read_bio_ex() and\\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\\nuses of these functions are not vulnerable because the caller does not free the\\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\\nOpenSSL 3.0.\\n\\nThe OpenSSL asn1parse command line application is also impacted by this issue.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-415\"}]},{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-415\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"1.1.1\",\"versionEndExcluding\":\"1.1.1t\",\"matchCriteriaId\":\"DE0061D6-8F81-45D3-B254-82A94915FD08\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:openssl:openssl:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"3.0.0\",\"versionEndExcluding\":\"3.0.8\",\"matchCriteriaId\":\"A6DC5D88-4E99-48F2-8892-610ACA9B5B86\"}]}]},{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:stormshield:stormshield_network_security:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.0.0\",\"versionEndExcluding\":\"4.3.16\",\"matchCriteriaId\":\"F7794B42-8235-4C75-866F-5D0A405F0989\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:stormshield:stormshield_network_security:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.4.0\",\"versionEndExcluding\":\"4.6.3\",\"matchCriteriaId\":\"C8A23A5D-928A-4225-9C93-31E5DFE215A7\"}]}]}],\"references\":[{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://security.gentoo.org/glsa/202402-08\",\"source\":\"openssl-security@openssl.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20230207.txt\",\"source\":\"openssl-security@openssl.org\",\"tags\":[\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Vendor Advisory\"]},{\"url\":\"https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0003\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"},{\"url\":\"https://security.gentoo.org/glsa/202402-08\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"},{\"url\":\"https://www.openssl.org/news/secadv/20230207.txt\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"https://www.openssl.org/news/secadv/20230207.txt\", \"name\": \"OpenSSL Advisory\", \"tags\": [\"vendor-advisory\", \"x_transferred\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\", \"name\": \"3.0.8 git commit\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\", \"name\": \"1.1.1t git commit\", \"tags\": [\"patch\", \"x_transferred\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2023-0003\"}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2025-11-04T19:14:13.257Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.5, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"NONE\"}}, {\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2022-4450\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2025-04-23T13:26:38.705489Z\"}}}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-415\", \"description\": \"CWE-415 Double Free\"}]}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2025-05-05T13:07:11.576Z\"}}], \"cna\": {\"title\": \"Double free after calling PEM_read_bio_ex\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"finder\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"CarpetFuzz\"}, {\"lang\": \"en\", \"type\": \"reporter\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Dawei Wang\"}, {\"lang\": \"en\", \"type\": \"reporter\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Marc Sch\\u00f6nefeld\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Kurt Roeckx\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"user\": \"00000000-0000-4000-9000-000000000000\", \"value\": \"Matt Caswell\"}], \"metrics\": [{\"other\": {\"type\": \"https://www.openssl.org/policies/secpolicy.html\", \"content\": {\"text\": \"Moderate\"}}, \"format\": \"other\"}], \"affected\": [{\"vendor\": \"OpenSSL\", \"product\": \"OpenSSL\", \"versions\": [{\"status\": \"affected\", \"version\": \"3.0.0\", \"lessThan\": \"3.0.8\", \"versionType\": \"semver\"}, {\"status\": \"affected\", \"version\": \"1.1.1\", \"lessThan\": \"1.1.1t\", \"versionType\": \"custom\"}], \"defaultStatus\": \"unaffected\"}], \"datePublic\": \"2023-02-07T00:00:00.000Z\", \"references\": [{\"url\": \"https://www.openssl.org/news/secadv/20230207.txt\", \"name\": \"OpenSSL Advisory\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=63bcf189be73a9cc1264059bed6f57974be74a83\", \"name\": \"3.0.8 git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=bbcf509bd046b34cca19c766bbddc31683d0858b\", \"name\": \"1.1.1t git commit\", \"tags\": [\"patch\"]}, {\"url\": \"https://security.gentoo.org/glsa/202402-08\"}], \"x_generator\": {\"engine\": \"Vulnogram 0.1.0-dev\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\\ndecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\\nIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\\npopulated with pointers to buffers containing the relevant decoded data. The\\ncaller is responsible for freeing those buffers. It is possible to construct a\\nPEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\\nwill return a failure code but will populate the header argument with a pointer\\nto a buffer that has already been freed. If the caller also frees this buffer\\nthen a double free will occur. This will most likely lead to a crash. This\\ncould be exploited by an attacker who has the ability to supply malicious PEM\\nfiles for parsing to achieve a denial of service attack.\\n\\nThe functions PEM_read_bio() and PEM_read() are simple wrappers around\\nPEM_read_bio_ex() and therefore these functions are also directly affected.\\n\\nThese functions are also called indirectly by a number of other OpenSSL\\nfunctions including PEM_X509_INFO_read_bio_ex() and\\nSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\\nuses of these functions are not vulnerable because the caller does not free the\\nheader argument if PEM_read_bio_ex() returns a failure code. These locations\\ninclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\\nOpenSSL 3.0.\\n\\nThe OpenSSL asn1parse command line application is also impacted by this issue.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and\u003cbr\u003edecodes the \\\"name\\\" (e.g. \\\"CERTIFICATE\\\"), any header data and the payload data.\u003cbr\u003eIf the function succeeds then the \\\"name_out\\\", \\\"header\\\" and \\\"data\\\" arguments are\u003cbr\u003epopulated with pointers to buffers containing the relevant decoded data. The\u003cbr\u003ecaller is responsible for freeing those buffers. It is possible to construct a\u003cbr\u003ePEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex()\u003cbr\u003ewill return a failure code but will populate the header argument with a pointer\u003cbr\u003eto a buffer that has already been freed. If the caller also frees this buffer\u003cbr\u003ethen a double free will occur. This will most likely lead to a crash. This\u003cbr\u003ecould be exploited by an attacker who has the ability to supply malicious PEM\u003cbr\u003efiles for parsing to achieve a denial of service attack.\u003cbr\u003e\u003cbr\u003eThe functions PEM_read_bio() and PEM_read() are simple wrappers around\u003cbr\u003ePEM_read_bio_ex() and therefore these functions are also directly affected.\u003cbr\u003e\u003cbr\u003eThese functions are also called indirectly by a number of other OpenSSL\u003cbr\u003efunctions including PEM_X509_INFO_read_bio_ex() and\u003cbr\u003eSSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal\u003cbr\u003euses of these functions are not vulnerable because the caller does not free the\u003cbr\u003eheader argument if PEM_read_bio_ex() returns a failure code. These locations\u003cbr\u003einclude the PEM_read_bio_TYPE() functions as well as the decoders introduced in\u003cbr\u003eOpenSSL 3.0.\u003cbr\u003e\u003cbr\u003e\u003cdiv\u003eThe OpenSSL asn1parse command line application is also impacted by this issue.\u003c/div\u003e\u003cbr\u003e\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"description\": \"double-free\"}]}], \"providerMetadata\": {\"orgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"shortName\": \"openssl\", \"dateUpdated\": \"2024-02-04T09:06:50.535Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2022-4450\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-11-04T19:14:13.257Z\", \"dateReserved\": \"2022-12-13T13:38:08.598Z\", \"assignerOrgId\": \"3a12439a-ef3a-4c79-92e6-6081a721f1e5\", \"datePublished\": \"2023-02-08T19:04:04.874Z\", \"assignerShortName\": \"openssl\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
ICSA-24-046-15
Vulnerability from csaf_cisa - Published: 2024-02-13 00:00 - Updated: 2024-03-12 00:00{
"document": {
"acknowledgments": [
{
"organization": "Siemens ProductCERT",
"summary": "reporting these vulnerabilities to CISA."
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "SINEC NMS before V2.0 SP1 is affected by multiple vulnerabilities.\n\nSiemens has released an update for SINEC NMS and recommends to update to the latest version.",
"title": "Summary"
},
{
"category": "general",
"text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity",
"title": "General Recommendations"
},
{
"category": "general",
"text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "Siemens Security Advisories are subject to the terms and conditions contained in Siemens\u0027 underlying license terms or other applicable agreements previously agreed to with Siemens (hereinafter \"License Terms\"). To the extent applicable to information, software or documentation made available in or through a Siemens Security Advisory, the Terms of Use of Siemens\u0027 Global Website (https://www.siemens.com/terms_of_use, hereinafter \"Terms of Use\"), in particular Sections 8-10 of the Terms of Use, shall apply additionally. In case of conflicts, the License Terms shall prevail over the Terms of Use.",
"title": "Terms of Use"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Multiple",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Germany",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "SSA-943925: Multiple Vulnerabilities in SINEC NMS before V2.0 SP1 - CSAF Version",
"url": "https://cert-portal.siemens.com/productcert/csaf/ssa-943925.json"
},
{
"category": "self",
"summary": "SSA-943925: Multiple Vulnerabilities in SINEC NMS before V2.0 SP1 - HTML Version",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-943925.html"
},
{
"category": "self",
"summary": "SSA-943925: Multiple Vulnerabilities in SINEC NMS before V2.0 SP1 - PDF Version",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-943925.pdf"
},
{
"category": "self",
"summary": "SSA-943925: Multiple Vulnerabilities in SINEC NMS before V2.0 SP1 - TXT Version",
"url": "https://cert-portal.siemens.com/productcert/txt/ssa-943925.txt"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-046-15 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-046-15.json"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-046-15 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-046-15"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Siemens SINEC NMS",
"tracking": {
"current_release_date": "2024-03-12T00:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1.0.0"
}
},
"id": "ICSA-24-046-15",
"initial_release_date": "2024-02-13T00:00:00.000000Z",
"revision_history": [
{
"date": "2024-02-13T00:00:00.000000Z",
"legacy_version": "1.0",
"number": "1",
"summary": "Publication Date"
},
{
"date": "2024-03-12T00:00:00.000000Z",
"legacy_version": "1.1",
"number": "2",
"summary": "Added missing acknowledgment for CVE-2024-23811"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.0_SP1",
"product": {
"name": "SINEC NMS",
"product_id": "CSAFPID-0001"
}
}
],
"category": "product_name",
"name": "SINEC NMS"
}
],
"category": "vendor",
"name": "Siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4203",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "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. The read buffer overrun might result in a crash which could lead to a denial of service attack. In theory it could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext) although we are not aware of any working exploit leading to memory contents disclosure as of the time of release of this advisory. In a TLS client, this can be triggered by connecting to a malicious server. In a TLS server, this can be triggered if the server requests client authentication and a malicious client connects.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-4203"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0216",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "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. The result of the dereference is an application crash which could lead to a denial of service attack. The TLS implementation in OpenSSL does not call this function however third party applications might call these functions on untrusted data.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0216"
},
{
"cve": "CVE-2023-0217",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "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. This will most likely lead 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 attack. The TLS implementation in OpenSSL does not call this function but applications might call the function if there are additional security requirements imposed by standards such as FIPS 140-3.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0217"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0401",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "A NULL pointer 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. The unavailability of an algorithm can be caused by using FIPS enabled configuration of providers or more commonly by not loading the legacy provider. PKCS7 data is processed by the SMIME library calls and also by the time stamp (TS) library calls. The TLS implementation in OpenSSL does not call these functions however third party applications would be affected if they call these functions to verify signatures on untrusted data.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0401"
},
{
"cve": "CVE-2023-1255",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: The AES-XTS cipher decryption implementation for 64 bit ARM\nplatform contains a bug that could cause it to read past the input buffer,\nleading to a crash.\n\nImpact summary: Applications that use the AES-XTS algorithm on the 64 bit ARM\nplatform can crash in rare circumstances. The AES-XTS algorithm is usually\nused for disk encryption.\n\nThe AES-XTS cipher decryption implementation for 64 bit ARM platform will read\npast the end of the ciphertext buffer if the ciphertext size is 4 mod 5 in 16\nbyte blocks, e.g. 144 bytes or 1024 bytes. If the memory after the ciphertext\nbuffer is unmapped, this will trigger a crash which results in a denial of\nservice.\n\nIf an attacker can control the size and location of the ciphertext buffer\nbeing decrypted by an application using AES-XTS on 64 bit ARM, the\napplication is affected. This is fairly unlikely making this issue\na Low severity one.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-1255"
},
{
"cve": "CVE-2023-2454",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-2454"
},
{
"cve": "CVE-2023-2455",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-2455"
},
{
"cve": "CVE-2023-2650",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: Processing some specially crafted ASN.1 object identifiers or data containing them may be very slow. Impact summary: Applications that use OBJ_obj2txt() directly, or use any of the OpenSSL subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS with no message size limit may experience notable to very long delays when processing those messages, which may lead to a Denial of Service. An OBJECT IDENTIFIER is composed of a series of numbers - sub-identifiers - most of which have no size limit. OBJ_obj2txt() may be used to translate an ASN.1 OBJECT IDENTIFIER given in DER encoding form (using the OpenSSL type ASN1_OBJECT) to its canonical numeric text form, which are the sub-identifiers of the OBJECT IDENTIFIER in decimal form, separated by periods. When one of the sub-identifiers in the OBJECT IDENTIFIER is very large (these are sizes that are seen as absurdly large, taking up tens or hundreds of KiBs), the translation to a decimal number in text may take a very long time. The time complexity is O(square(n)) with \u0027n\u0027 being the size of the sub-identifiers in bytes (*). With OpenSSL 3.0, support to fetch cryptographic algorithms using names / identifiers in string form was introduced. This includes using OBJECT IDENTIFIERs in canonical numeric text form as identifiers for fetching algorithms. Such OBJECT IDENTIFIERs may be received through the ASN.1 structure AlgorithmIdentifier, which is commonly used in multiple protocols to specify what cryptographic algorithm should be used to sign or verify, encrypt or decrypt, or digest passed data. Applications that call OBJ_obj2txt() directly with untrusted data are affected, with any version of OpenSSL. If the use is for the mere purpose of display, the severity is considered low. In OpenSSL 3.0 and newer, this affects the subsystems OCSP, PKCS7/SMIME, CMS, CMP/CRMF or TS. It also impacts anything that processes X.509 certificates, including simple things like verifying its signature. The impact on TLS is relatively low, because all versions of OpenSSL have a 100KiB limit on the peer\u0027s certificate chain. Additionally, this only impacts clients, or servers that have explicitly enabled client authentication. In OpenSSL 1.1.1 and 1.0.2, this only affects displaying diverse objects, such as X.509 certificates. This is assumed to not happen in such a way that it would cause a Denial of Service, so these versions are considered not affected by this issue in such a way that it would be cause for concern, and the severity is therefore considered low.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-2650"
},
{
"cve": "CVE-2023-2975",
"cwe": {
"id": "CWE-287",
"name": "Improper Authentication"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: The AES-SIV cipher implementation contains a bug that causes it to ignore empty associated data entries which are unauthenticated as a consequence. Impact summary: Applications that use the AES-SIV algorithm and want to authenticate empty data entries as associated data can be mislead by removing adding or reordering such empty entries as these are ignored by the OpenSSL implementation. We are currently unaware of any such applications. The AES-SIV algorithm allows for authentication of multiple associated data entries along with the encryption. To authenticate empty data the application has to call EVP_EncryptUpdate() (or EVP_CipherUpdate()) with NULL pointer as the output buffer and 0 as the input buffer length. The AES-SIV implementation in OpenSSL just returns success for such a call instead of performing the associated data authentication operation. The empty data thus will not be authenticated. As this issue does not affect non-empty associated data authentication and we expect it to be rare for an application to use empty associated data entries this is qualified as Low severity issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-2975"
},
{
"cve": "CVE-2023-3446",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. One of those checks confirms that the modulus (\u0027p\u0027 parameter) is not too large. Trying to use a very large modulus is slow and OpenSSL will not normally use a modulus which is over 10,000 bits in length. However the DH_check() function checks numerous aspects of the key or parameters that have been supplied. Some of those checks use the supplied modulus value even if it has already been found to be too large. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulernable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \u0027-check\u0027 option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-3446"
},
{
"cve": "CVE-2023-3817",
"cwe": {
"id": "CWE-834",
"name": "Excessive Iteration"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. After fixing CVE-2023-3446 it was discovered that a large q parameter value can also trigger an overly long computation during some of these checks. A correct q value, if present, cannot be larger than the modulus p parameter, thus it is unnecessary to perform these checks if q is larger than p. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \"-check\" option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-3817"
},
{
"cve": "CVE-2023-25690",
"cwe": {
"id": "CWE-444",
"name": "Inconsistent Interpretation of HTTP Requests (\u0027HTTP Request/Response Smuggling\u0027)"
},
"notes": [
{
"category": "summary",
"text": "Some mod_proxy configurations on Apache HTTP Server versions 2.4.0 through 2.4.55 allow a HTTP Request Smuggling attack.\r\n\r\nConfigurations 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. \r\n\r\nRequest splitting/smuggling could result in bypass of access controls in the proxy server, proxying unintended URLs to existing origin servers, and cache poisoning. Users are recommended to update to at least version 2.4.56 of Apache HTTP Server.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-25690"
},
{
"cve": "CVE-2023-27522",
"cwe": {
"id": "CWE-444",
"name": "Inconsistent Interpretation of HTTP Requests (\u0027HTTP Request/Response Smuggling\u0027)"
},
"notes": [
{
"category": "summary",
"text": "HTTP Response Smuggling vulnerability in Apache HTTP Server via mod_proxy_uwsgi. This issue affects Apache HTTP Server: from 2.4.30 through 2.4.55.\n\nSpecial characters in the origin response header can truncate/split the response forwarded to the client.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-27522"
},
{
"cve": "CVE-2023-27533",
"cwe": {
"id": "CWE-74",
"name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)"
},
"notes": [
{
"category": "summary",
"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": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-27533"
},
{
"cve": "CVE-2023-27534",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "summary",
"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": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-27534"
},
{
"cve": "CVE-2023-27535",
"cwe": {
"id": "CWE-287",
"name": "Improper Authentication"
},
"notes": [
{
"category": "summary",
"text": "An authentication bypass vulnerability exists in libcurl \u003c8.0.0 in the FTP connection reuse feature that can result in wrong credentials being used during subsequent transfers. Previously created connections are kept in a connection pool for reuse if they match the current setup. However, certain FTP settings such as CURLOPT_FTP_ACCOUNT, CURLOPT_FTP_ALTERNATIVE_TO_USER, CURLOPT_FTP_SSL_CCC, and CURLOPT_USE_SSL were not included in the configuration match checks, causing them to match too easily. This could lead to libcurl using the wrong credentials when performing a transfer, potentially allowing unauthorized access to sensitive information.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-27535"
},
{
"cve": "CVE-2023-27536",
"cwe": {
"id": "CWE-287",
"name": "Improper Authentication"
},
"notes": [
{
"category": "summary",
"text": "An authentication bypass vulnerability exists libcurl \u003c8.0.0 in the connection reuse feature which can reuse previously established connections with incorrect user permissions due to a failure to check for changes in the CURLOPT_GSSAPI_DELEGATION option. This vulnerability affects krb5/kerberos/negotiate/GSSAPI transfers and could potentially result in unauthorized access to sensitive information. The safest option is to not reuse connections if the CURLOPT_GSSAPI_DELEGATION option has been changed.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-27536"
},
{
"cve": "CVE-2023-27537",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "A double free vulnerability exists in libcurl \u003c8.0.0 when sharing HSTS data between separate \"handles\". This sharing was introduced without considerations for do this sharing across separate threads but there was no indication of this fact in the documentation. Due to missing mutexes or thread locks, two threads sharing the same HSTS data could end up doing a double-free or use-after-free.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-27537"
},
{
"cve": "CVE-2023-27538",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "libcurl would reuse a previously created connection even when an SSH related option had been changed that should have prohibited reuse. libcurl keeps previously used connections in a connection pool for subsequent transfers to reuse if one of them matches the setup. However, two SSH settings were left out from the configuration match checks, making them match too easily.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-27538"
},
{
"cve": "CVE-2023-28319",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A use after free vulnerability exists in curl \u003cv8.1.0 in the way libcurl offers a feature to verify an SSH server\u0027s public key using a SHA 256 hash. When this check fails, libcurl would free the memory for the fingerprint before it returns an error message containing the (now freed) hash. This flaw risks inserting sensitive heap-based data into the error message that might be shown to users or otherwise get leaked and revealed.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-28319"
},
{
"cve": "CVE-2023-28320",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "A denial of service vulnerability exists in curl \u003cv8.1.0 in the way libcurl provides several different backends for resolving host names, selected at build time. If it is built to use the synchronous resolver, it allows name resolves to time-out slow operations using `alarm()` and `siglongjmp()`. When doing this, libcurl used a global buffer that was not mutex protected and a multi-threaded application might therefore crash or otherwise misbehave.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-28320"
},
{
"cve": "CVE-2023-28321",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "An improper certificate validation vulnerability exists in curl \u003cv8.1.0 in the way it supports matching of wildcard patterns when listed as \"Subject Alternative Name\" in TLS server certificates. curl can be built to use its own name matching function for TLS rather than one provided by a TLS library. This private wildcard matching function would match IDN (International Domain Name) hosts incorrectly and could as a result accept patterns that otherwise should mismatch. IDN hostnames are converted to puny code before used for certificate checks. Puny coded names always start with `xn--` and should not be allowed to pattern match, but the wildcard check in curl could still check for `x*`, which would match even though the IDN name most likely contained nothing even resembling an `x`.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-28321"
},
{
"cve": "CVE-2023-28322",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "An information disclosure vulnerability exists in curl \u003cv8.1.0 when doing HTTP(S) transfers, libcurl might erroneously use the read callback (`CURLOPT_READFUNCTION`) to ask for data to send, even when the `CURLOPT_POSTFIELDS` option has been set, if the same handle previously wasused to issue a `PUT` request which used that callback. This flaw may surprise the application and cause it to misbehave and either send off the wrong data or use memory after free or similar in the second transfer. The problem exists in the logic for a reused handle when it is (expected to be) changed from a PUT to a POST.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-28322"
},
{
"cve": "CVE-2023-28709",
"cwe": {
"id": "CWE-193",
"name": "Off-by-one Error"
},
"notes": [
{
"category": "summary",
"text": "The fix for CVE-2023-24998 was incomplete for Apache Tomcat 11.0.0-M2 to 11.0.0-M4, 10.1.5 to 10.1.7, 9.0.71 to 9.0.73 and 8.5.85 to 8.5.87. If non-default HTTP connector settings were used such that the maxParameterCount\u00a0could be reached using query string parameters and a request was submitted that supplied exactly maxParameterCount parameters\u00a0in the query string, the limit for uploaded request parts could be\u00a0bypassed with the potential for a denial of service to occur.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-28709"
},
{
"cve": "CVE-2023-30581",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "The use of __proto__ in process.mainModule.__proto__.require() can bypass the policy mechanism and require modules outside of the policy.json definition. This vulnerability affects all users using the experimental policy mechanism in all active release lines: v16, v18 and, v20.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30581"
},
{
"cve": "CVE-2023-30582",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability in Node.js, affecting users of the experimental permission model when the --allow-fs-read flag is used with a non-* argument. This flaw arises from an inadequate permission model that fails to restrict file watching through the fs.watchFile API. As a result, malicious actors can monitor files that they do not have explicit read access to.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30582"
},
{
"cve": "CVE-2023-30583",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "fs.openAsBlob() can bypass the experimental permission model when using the file system read restriction with the --allow-fs-read flag in Node.js. This vulnerability arises from a missing check in the fs.openAsBlob() API.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30583"
},
{
"cve": "CVE-2023-30584",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability in the experimental permission model of Node.js leads to improper handling of path traversal bypass when verifying file permissions.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30584"
},
{
"cve": "CVE-2023-30585",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability has been identified in the Node.js (.msi version) installation process, specifically affecting Windows users who install Node.js using the .msi installer. This vulnerability emerges during the repair operation, where the \"msiexec.exe\" process, running under the NT AUTHORITY\\SYSTEM context, attempts to read the %USERPROFILE% environment variable from the current user\u0027s registry.\n\nThe issue arises when the path referenced by the %USERPROFILE% environment variable does not exist. In such cases, the \"msiexec.exe\" process attempts to create the specified path in an unsafe manner, potentially leading to the creation of arbitrary folders in arbitrary locations.\n\nThe severity of this vulnerability is heightened by the fact that the %USERPROFILE% environment variable in the Windows registry can be modified by standard (or \"non-privileged\") users. Consequently, unprivileged actors, including malicious entities or trojans, can manipulate the environment variable key to deceive the privileged \"msiexec.exe\" process. This manipulation can result in the creation of folders in unintended and potentially malicious locations.\n\nIt is important to note that this vulnerability is specific to Windows users who install Node.js using the .msi installer. Users who opt for other installation methods are not affected by this particular issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30585"
},
{
"cve": "CVE-2023-30586",
"cwe": {
"id": "CWE-862",
"name": "Missing Authorization"
},
"notes": [
{
"category": "summary",
"text": "A privilege escalation vulnerability exists in Node.js 20 that allowed loading arbitrary OpenSSL engines when the experimental permission model is enabled, which can bypass and/or disable the permission model. The attack complexity is high. However, the crypto.setEngine() API can be used to bypass the permission model when called with a compatible OpenSSL engine. The OpenSSL engine can, for example, disable the permission model in the host process by manipulating the process\u0027s stack memory to locate the permission model Permission::enabled_ in the host process\u0027s heap memory. Please note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30586"
},
{
"cve": "CVE-2023-30587",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability in Node.js allows for bypassing restrictions set by the --experimental-permission flag using the built-in inspector module (node:inspector). By exploiting the Worker class\u0027s ability to create an \"internal worker\" with the kIsInternal Symbol, attackers can modify the isInternal value when an inspector is attached within the Worker constructor before initializing a new WorkerImpl.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30587"
},
{
"cve": "CVE-2023-30588",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "When an invalid public key is used to create an x509 certificate using the crypto.X509Certificate() API a non-expect termination occurs making it susceptible to DoS attacks when the attacker could force interruptions of application processing, as the process terminates when accessing public key info of provided certificates from user code. The current context of the users will be gone, and that will cause a DoS scenario. This vulnerability affects all active Node.js versions v16, v18, and, v20.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-30588"
},
{
"cve": "CVE-2023-30589",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "The llhttp parser in the http module in Node v20.2.0 does not strictly use the CRLF sequence to delimit HTTP requests. This can lead to HTTP Request Smuggling (HRS).\r\n\r\nThe CR character (without LF) is sufficient to delimit HTTP header fields in the llhttp parser. According to RFC7230 section 3, only the CRLF sequence should delimit each header-field. This impacts all Node.js active versions: v16, v18, and, v20",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30589"
},
{
"cve": "CVE-2023-30590",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "The generateKeys() API function returned from crypto.createDiffieHellman() only generates missing (or outdated) keys, that is, it only generates a private key if none has been set yet, but the function is also needed to compute the corresponding public key after calling setPrivateKey(). However, the documentation says this API call: \"Generates private and public Diffie-Hellman key values\".\n\nThe documented behavior is very different from the actual behavior, and this difference could easily lead to security issues in applications that use these APIs as the DiffieHellman may be used as the basis for application-level security, implications are consequently broad.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-30590"
},
{
"cve": "CVE-2023-31124",
"cwe": {
"id": "CWE-330",
"name": "Use of Insufficiently Random Values"
},
"notes": [
{
"category": "summary",
"text": "c-ares is an asynchronous resolver library. When cross-compiling c-ares and using the autotools build system, CARES_RANDOM_FILE will not be set, as seen when cross compiling aarch64 android. This will downgrade to using rand() as a fallback which could allow an attacker to take advantage of the lack of entropy by not using a CSPRNG. This issue was patched in version 1.19.1.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-31124"
},
{
"cve": "CVE-2023-31130",
"cwe": {
"id": "CWE-124",
"name": "Buffer Underwrite (\u0027Buffer Underflow\u0027)"
},
"notes": [
{
"category": "summary",
"text": "c-ares is an asynchronous resolver library. ares_inet_net_pton() is vulnerable to a buffer underflow for certain ipv6 addresses, in particular \"0::00:00:00/2\" was found to cause an issue. C-ares only uses this function internally for configuration purposes which would require an administrator to configure such an address via ares_set_sortlist(). However, users may externally use ares_inet_net_pton() for other purposes and thus be vulnerable to more severe issues. This issue has been fixed in 1.19.1.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-31130"
},
{
"cve": "CVE-2023-31147",
"cwe": {
"id": "CWE-330",
"name": "Use of Insufficiently Random Values"
},
"notes": [
{
"category": "summary",
"text": "c-ares is an asynchronous resolver library. When /dev/urandom or RtlGenRandom() are unavailable, c-ares uses rand() to generate random numbers used for DNS query ids. This is not a CSPRNG, and it is also not seeded by srand() so will generate predictable output. Input from the random number generator is fed into a non-compilant RC4 implementation and may not be as strong as the original RC4 implementation. No attempt is made to look for modern OS-provided CSPRNGs like arc4random() that is widely available. This issue has been fixed in version 1.19.1.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-31147"
},
{
"cve": "CVE-2023-32002",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "The use of `Module._load()` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\n\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32002"
},
{
"cve": "CVE-2023-32003",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "summary",
"text": "`fs.mkdtemp()` and `fs.mkdtempSync()` can be used to bypass the permission model check using a path traversal attack. This flaw arises from a missing check in the fs.mkdtemp() API and the impact is a malicious actor could create an arbitrary directory.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32003"
},
{
"cve": "CVE-2023-32004",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability has been discovered in Node.js version 20, specifically within the experimental permission model. This flaw relates to improper handling of Buffers in file system APIs causing a traversal path to bypass when verifying file permissions.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-32004"
},
{
"cve": "CVE-2023-32005",
"cwe": {
"id": "CWE-732",
"name": "Incorrect Permission Assignment for Critical Resource"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability has been identified in Node.js version 20, affecting users of the experimental permission model when the --allow-fs-read flag is used with a non-* argument.\n\nThis flaw arises from an inadequate permission model that fails to restrict file stats through the `fs.statfs` API. As a result, malicious actors can retrieve stats from files that they do not have explicit read access to.\n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32005"
},
{
"cve": "CVE-2023-32006",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "The use of `module.constructor.createRequire()` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\n\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x, and, 20.x.\n\nPlease note that at the time this CVE was issued, the policy is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-32006"
},
{
"cve": "CVE-2023-32067",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "c-ares is an asynchronous resolver library. c-ares is vulnerable to denial of service. If a target resolver sends a query, the attacker forges a malformed UDP packet with a length of 0 and returns them to the target resolver. The target resolver erroneously interprets the 0 length as a graceful shutdown of the connection. This issue has been patched in version 1.19.1.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32067"
},
{
"cve": "CVE-2023-32558",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "summary",
"text": "The use of the deprecated API `process.binding()` can bypass the permission model through path traversal. \n\nThis vulnerability affects all users using the experimental permission model in Node.js 20.x.\n\nPlease note that at the time this CVE was issued, the permission model is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32558"
},
{
"cve": "CVE-2023-32559",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "A privilege escalation vulnerability exists in the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x. The use of the deprecated API `process.binding()` can bypass the policy mechanism by requiring internal modules and eventually take advantage of `process.binding(\u0027spawn_sync\u0027)` run arbitrary code, outside of the limits defined in a `policy.json` file. Please note that at the time this CVE was issued, the policy is an experimental feature of Node.js.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32559"
},
{
"cve": "CVE-2023-34035",
"cwe": {
"id": "CWE-863",
"name": "Incorrect Authorization"
},
"notes": [
{
"category": "summary",
"text": "Spring Security versions 5.8\u00a0prior to 5.8.5, 6.0\u00a0prior to 6.0.5,\u00a0and 6.1\u00a0prior to 6.1.2\u00a0could be susceptible to authorization rule misconfiguration if the application uses requestMatchers(String)\u00a0and multiple servlets, one of them being Spring MVC\u2019s DispatcherServlet.\u00a0(DispatcherServlet\u00a0is a Spring MVC component that maps HTTP endpoints to methods on @Controller-annotated classes.)\n\nSpecifically, an application is vulnerable when all of the following are true:\n\n * Spring MVC is on the classpath\n * Spring Security is securing more than one servlet in a single application (one of them being Spring MVC\u2019s DispatcherServlet)\n * The application uses requestMatchers(String)\u00a0to refer to endpoints that are not Spring MVC endpoints\n\n\nAn application is not vulnerable if any of the following is true:\n\n * The application does not have Spring MVC on the classpath\n * The application secures no servlets other than Spring MVC\u2019s DispatcherServlet\n * The application uses requestMatchers(String)\u00a0only for Spring MVC endpoints",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-34035"
},
{
"cve": "CVE-2023-35945",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "Envoy is a cloud-native high-performance edge/middle/service proxy. Envoy\u2019s HTTP/2 codec may leak a header map and bookkeeping structures upon receiving `RST_STREAM` immediately followed by the `GOAWAY` frames from an upstream server. In nghttp2, cleanup of pending requests due to receipt of the `GOAWAY` frame skips de-allocation of the bookkeeping structure and pending compressed header. The error return [code path] is taken if connection is already marked for not sending more requests due to `GOAWAY` frame. The clean-up code is right after the return statement, causing memory leak. Denial of service through memory exhaustion. This vulnerability was patched in versions(s) 1.26.3, 1.25.8, 1.24.9, 1.23.11.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-35945"
},
{
"cve": "CVE-2023-38039",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"notes": [
{
"category": "summary",
"text": "When curl retrieves an HTTP response, it stores the incoming headers so that\nthey can be accessed later via the libcurl headers API.\n\nHowever, curl did not have a limit in how many or how large headers it would\naccept in a response, allowing a malicious server to stream an endless series\nof headers and eventually cause curl to run out of heap memory.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-38039"
},
{
"cve": "CVE-2023-38199",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "summary",
"text": "coreruleset (aka OWASP ModSecurity Core Rule Set) through 3.3.4 does not detect multiple Content-Type request headers on some platforms. This might allow attackers to bypass a WAF with a crafted payload, aka \"Content-Type confusion\" between the WAF and the backend application. This occurs when the web application relies on only the last Content-Type header. Other platforms may reject the additional Content-Type header or merge conflicting headers, leading to detection as a malformed header.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-38199"
},
{
"cve": "CVE-2023-38545",
"cwe": {
"id": "CWE-122",
"name": "Heap-based Buffer Overflow"
},
"notes": [
{
"category": "summary",
"text": "This flaw makes curl overflow a heap based buffer in the SOCKS5 proxy handshake.\r\n\r\nWhen curl is asked to pass along the hostname to the SOCKS5 proxy to allow that to resolve the address instead of it getting done by curl itself, the maximum length that hostname can be is 255 bytes.\r\n\r\nIf the hostname is detected to be longer than 255 bytes, curl switches to local name resolving and instead passes on the resolved address only to the proxy. Due to a bug, the local variable that means \"let the host resolve the name\" could get the wrong value during a slow SOCKS5 handshake, and contrary to the intention, copy the too long hostname to the target buffer instead of copying just the resolved address there.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-38545"
},
{
"cve": "CVE-2023-38546",
"cwe": {
"id": "CWE-73",
"name": "External Control of File Name or Path"
},
"notes": [
{
"category": "summary",
"text": "This flaw allows an attacker to insert cookies at will into a running program\r\nusing libcurl, if the specific series of conditions are met.\r\n\r\nlibcurl performs transfers. In its API, an application creates \"easy handles\"\r\nthat are the individual handles for single transfers.\r\n\r\nlibcurl provides a function call that duplicates en easy handle called\r\n[curl_easy_duphandle](https://curl.se/libcurl/c/curl_easy_duphandle.html).\r\n\r\nIf a transfer has cookies enabled when the handle is duplicated, the\r\ncookie-enable state is also cloned - but without cloning the actual\r\ncookies. If the source handle did not read any cookies from a specific file on\r\ndisk, the cloned version of the handle would instead store the file name as\r\n`none` (using the four ASCII letters, no quotes).\r\n\r\nSubsequent use of the cloned handle that does not explicitly set a source to\r\nload cookies from would then inadvertently load cookies from a file named\r\n`none` - if such a file exists and is readable in the current directory of the\r\nprogram using libcurl. And if using the correct file format of course.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-38546"
},
{
"cve": "CVE-2023-39417",
"cwe": {
"id": "CWE-89",
"name": "Improper Neutralization of Special Elements used in an SQL Command (\u0027SQL Injection\u0027)"
},
"notes": [
{
"category": "summary",
"text": "IN THE EXTENSION SCRIPT, a SQL Injection vulnerability was found in PostgreSQL if it uses @extowner@, @extschema@, or @extschema:...@ inside a quoting construct (dollar quoting, \u0027\u0027, or \"\"). If an administrator has installed files of a vulnerable, trusted, non-bundled extension, an attacker with database-level CREATE privilege can execute arbitrary code as the bootstrap superuser.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-39417"
},
{
"cve": "CVE-2023-39418",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability was found in PostgreSQL with the use of the MERGE command, which fails to test new rows against row security policies defined for UPDATE and SELECT. If UPDATE and SELECT policies forbid some rows that INSERT policies do not forbid, a user could store such rows.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-39418"
},
{
"cve": "CVE-2023-41080",
"cwe": {
"id": "CWE-601",
"name": "URL Redirection to Untrusted Site (\u0027Open Redirect\u0027)"
},
"notes": [
{
"category": "summary",
"text": "URL Redirection to Untrusted Site (\u0027Open Redirect\u0027) vulnerability in FORM authentication feature Apache Tomcat.This issue affects Apache Tomcat: from 11.0.0-M1 through 11.0.0-M10, from 10.1.0-M1 through 10.0.12, from 9.0.0-M1 through 9.0.79 and from 8.5.0 through 8.5.92.\n\nThe vulnerability is limited to the ROOT (default) web application.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-41080"
},
{
"cve": "CVE-2023-46120",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "The RabbitMQ Java client library allows Java and JVM-based applications to connect to and interact with RabbitMQ nodes. `maxBodyLebgth` was not used when receiving Message objects. Attackers could send a very large Message causing a memory overflow and triggering an OOM Error. Users of RabbitMQ may suffer from DoS attacks from RabbitMQ Java client which will ultimately exhaust the memory of the consumer. This vulnerability was patched in version 5.18.0.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-46120"
},
{
"cve": "CVE-2024-23810",
"cwe": {
"id": "CWE-89",
"name": "Improper Neutralization of Special Elements used in an SQL Command (\u0027SQL Injection\u0027)"
},
"notes": [
{
"category": "summary",
"text": "The affected application is vulnerable to SQL injection. This could allow an unauthenticated remote attacker to execute arbitrary SQL queries on the server database.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2024-23810"
},
{
"cve": "CVE-2024-23811",
"cwe": {
"id": "CWE-434",
"name": "Unrestricted Upload of File with Dangerous Type"
},
"notes": [
{
"category": "summary",
"text": "The affected application allows users to upload arbitrary files via TFTP. This could allow an attacker to upload malicious firmware images or other files, that could potentially lead to remote code execution.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2024-23811"
},
{
"cve": "CVE-2024-23812",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"notes": [
{
"category": "summary",
"text": "The affected application incorrectly neutralizes special elements when creating a report which could lead to command injection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.0 SP1 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109826954/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.0,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:A/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-0001"
]
}
],
"title": "CVE-2024-23812"
}
]
}
ICSA-24-102-08
Vulnerability from csaf_cisa - Published: 2024-04-09 00:00 - Updated: 2024-04-09 00:00{
"document": {
"acknowledgments": [
{
"organization": "Siemens ProductCERT",
"summary": "reporting these vulnerabilities to CISA."
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Siemens has released a new version for Telecontrol Server Basic that fixes multiple vulnerabilities.",
"title": "Summary"
},
{
"category": "general",
"text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity",
"title": "General Recommendations"
},
{
"category": "general",
"text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "Siemens Security Advisories are subject to the terms and conditions contained in Siemens\u0027 underlying license terms or other applicable agreements previously agreed to with Siemens (hereinafter \"License Terms\"). To the extent applicable to information, software or documentation made available in or through a Siemens Security Advisory, the Terms of Use of Siemens\u0027 Global Website (https://www.siemens.com/terms_of_use, hereinafter \"Terms of Use\"), in particular Sections 8-10 of the Terms of Use, shall apply additionally. In case of conflicts, the License Terms shall prevail over the Terms of Use.",
"title": "Terms of Use"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Multiple",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Germany",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "SSA-556635: Multiple Vulnerabilities in Telecontrol Server Basic before V3.1.2.0 - CSAF Version",
"url": "https://cert-portal.siemens.com/productcert/csaf/ssa-556635.json"
},
{
"category": "self",
"summary": "SSA-556635: Multiple Vulnerabilities in Telecontrol Server Basic before V3.1.2.0 - HTML Version",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-556635.html"
},
{
"category": "self",
"summary": "SSA-556635: Multiple Vulnerabilities in Telecontrol Server Basic before V3.1.2.0 - PDF Version",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-556635.pdf"
},
{
"category": "self",
"summary": "SSA-556635: Multiple Vulnerabilities in Telecontrol Server Basic before V3.1.2.0 - TXT Version",
"url": "https://cert-portal.siemens.com/productcert/txt/ssa-556635.txt"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-102-08 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-102-08.json"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-102-08 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-102-08"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Siemens Telecontrol Server Basic",
"tracking": {
"current_release_date": "2024-04-09T00:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1.0.0"
}
},
"id": "ICSA-24-102-08",
"initial_release_date": "2024-04-09T00:00:00.000000Z",
"revision_history": [
{
"date": "2024-04-09T00:00:00.000000Z",
"legacy_version": "1.0",
"number": "1",
"summary": "Publication Date"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.1.2",
"product": {
"name": "TeleControl Server Basic V3",
"product_id": "CSAFPID-0001"
}
}
],
"category": "product_name",
"name": "TeleControl Server Basic V3"
}
],
"category": "vendor",
"name": "Siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-40303",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. When parsing a multi-gigabyte XML document with the XML_PARSE_HUGE parser option enabled, several integer counters can overflow. This results in an attempt to access an array at a negative 2GB offset, typically leading to a segmentation fault.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. Certain invalid XML entity definitions can corrupt a hash table key, potentially leading to subsequent logic errors. In one case, a double-free can be provoked.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-43513",
"cwe": {
"id": "CWE-73",
"name": "External Control of File Name or Path"
},
"notes": [
{
"category": "summary",
"text": "The affected components allow to rename license files with user chosen input without authentication.\r\nThis could allow an unauthenticated remote attacker to rename and move files as SYSTEM user.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-43513"
},
{
"cve": "CVE-2022-43514",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"notes": [
{
"category": "summary",
"text": "The affected component does not correctly validate the root path on folder related operations, allowing to modify files and folders outside the intended root directory.\r\nThis could allow an unauthenticated remote attacker to execute file operations of files outside of the specified root folder. Chained with CVE-2022-43513 this could allow Remote Code Execution.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-43514"
},
{
"cve": "CVE-2022-44725",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "OPC Foundation Local Discovery Server (LDS) in affected products uses a hard-coded file path to a configuration file. This allows a normal user to create a malicious file that is loaded by LDS (running as a high-privilege user).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-44725"
},
{
"cve": "CVE-2022-46908",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "SQLite through 3.40.0, when relying on --safe for execution of an untrusted CLI script, does not properly implement the azProhibitedFunctions protection mechanism, and instead allows UDF functions such as WRITEFILE.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.3,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2022-46908"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:U/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0464",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "A security vulnerability has been identified in all supported versions of OpenSSL related to the verification of X.509 certificate chains that include policy constraints. Attackers may be able to exploit this vulnerability by creating a malicious certificate chain that triggers exponential use of computational resources, leading to a denial-of-service (DoS) attack on affected systems.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing the `-policy` argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0465",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "Applications that use a non-default option when verifying certificates may be\r\nvulnerable to an attack from a malicious CA to circumvent certain checks.\r\n\r\nInvalid certificate policies in leaf certificates are silently ignored by\r\nOpenSSL and other certificate policy checks are skipped for that certificate.\r\nA malicious CA could use this to deliberately assert invalid certificate policies\r\nin order to circumvent policy checking on the certificate altogether.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing\r\nthe `-policy` argument to the command line utilities or by calling the\r\n`X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0466",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-3446",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: Checking excessively long DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. One of those checks confirms that the modulus (\u0027p\u0027 parameter) is not too large. Trying to use a very large modulus is slow and OpenSSL will not normally use a modulus which is over 10,000 bits in length. However the DH_check() function checks numerous aspects of the key or parameters that have been supplied. Some of those checks use the supplied modulus value even if it has already been found to be too large. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulernable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \u0027-check\u0027 option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-3446"
},
{
"cve": "CVE-2023-4807",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: The POLY1305 MAC (message authentication code) implementation contains a bug that might corrupt the internal state of applications on the Windows 64 platform when running on newer X86_64 processors supporting the AVX512-IFMA instructions. Impact summary: If in an application that uses the OpenSSL library an attacker can influence whether the POLY1305 MAC algorithm is used, the application state might be corrupted with various application dependent consequences. The POLY1305 MAC (message authentication code) implementation in OpenSSL does not save the contents of non-volatile XMM registers on Windows 64 platform when calculating the MAC of data larger than 64 bytes. Before returning to the caller all the XMM registers are set to zero rather than restoring their previous content. The vulnerable code is used only on newer x86_64 processors supporting the AVX512-IFMA instructions. The consequences of this kind of internal application state corruption can be various - from no consequences, if the calling application does not depend on the contents of non-volatile XMM registers at all, to the worst consequences, where the attacker could get complete control of the application process. However given the contents of the registers are just zeroized so the attacker cannot put arbitrary values inside, the most likely consequence, if any, would be an incorrect result of some application dependent calculations or a crash leading to a denial of service. The POLY1305 MAC algorithm is most frequently used as part of the CHACHA20-POLY1305 AEAD (authenticated encryption with associated data) algorithm. The most common usage of this AEAD cipher is with TLS protocol versions 1.2 and 1.3 and a malicious client can influence whether this AEAD cipher is used by the server. This implies that server applications using OpenSSL can be potentially impacted. However we are currently not aware of any concrete application that would be affected by this issue therefore we consider this a Low severity security issue. As a workaround the AVX512-IFMA instructions support can be disabled at runtime by setting the environment variable OPENSSL_ia32cap: OPENSSL_ia32cap=:~0x200000 The FIPS provider is not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-4807"
},
{
"cve": "CVE-2023-5678",
"cwe": {
"id": "CWE-754",
"name": "Improper Check for Unusual or Exceptional Conditions"
},
"notes": [
{
"category": "summary",
"text": "Issue summary: Generating excessively long X9.42 DH keys or checking excessively long X9.42 DH keys or parameters may be very slow. Impact summary: Applications that use the functions DH_generate_key() to generate an X9.42 DH key may experience long delays. Likewise, applications that use DH_check_pub_key(), DH_check_pub_key_ex() or EVP_PKEY_public_check() to check an X9.42 DH key or X9.42 DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. While DH_check() performs all the necessary checks (as of CVE-2023-3817), DH_check_pub_key() doesn\u0027t make any of these checks, and is therefore vulnerable for excessively large P and Q parameters. Likewise, while DH_generate_key() performs a check for an excessively large P, it doesn\u0027t check for an excessively large Q. An application that calls DH_generate_key() or DH_check_pub_key() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. DH_generate_key() and DH_check_pub_key() are also called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_pub_key_ex(), EVP_PKEY_public_check(), and EVP_PKEY_generate(). Also vulnerable are the OpenSSL pkey command line application when using the \"-pubcheck\" option, as well as the OpenSSL genpkey command line application. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-5678"
},
{
"cve": "CVE-2023-21528",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-21528"
},
{
"cve": "CVE-2023-21568",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL Server Integration Service (VS extension) Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.3,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-21568"
},
{
"cve": "CVE-2023-21704",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-21704"
},
{
"cve": "CVE-2023-21705",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-21705"
},
{
"cve": "CVE-2023-21713",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-21713"
},
{
"cve": "CVE-2023-21718",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-21718"
},
{
"cve": "CVE-2023-23384",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.3,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-23384"
},
{
"cve": "CVE-2023-28484",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "In libxml2 before 2.10.4, parsing of certain invalid XSD schemas can lead to a NULL pointer dereference and subsequently a segfault. This occurs in xmlSchemaFixupComplexType in xmlschemas.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-28484"
},
{
"cve": "CVE-2023-29349",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC and OLE DB Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-29349"
},
{
"cve": "CVE-2023-29356",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-29356"
},
{
"cve": "CVE-2023-29469",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.4. When hashing empty dict strings in a crafted XML document, xmlDictComputeFastKey in dict.c can produce non-deterministic values, leading to various logic and memory errors, such as a double free. This behavior occurs because there is an attempt to use the first byte of an empty string, and any value is possible (not solely the \u0027\\0\u0027 value).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-29469"
},
{
"cve": "CVE-2023-32025",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32025"
},
{
"cve": "CVE-2023-32026",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32026"
},
{
"cve": "CVE-2023-32027",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32027"
},
{
"cve": "CVE-2023-32028",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL OLE DB Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-32028"
},
{
"cve": "CVE-2023-36049",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": ".NET, .NET Framework, and Visual Studio Elevation of Privilege Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.6,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36049"
},
{
"cve": "CVE-2023-36417",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL OLE DB Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36417"
},
{
"cve": "CVE-2023-36420",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36420"
},
{
"cve": "CVE-2023-36560",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "ASP.NET Security Feature Bypass Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-36560"
},
{
"cve": "CVE-2023-36728",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL Server Denial of Service Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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-0001"
]
}
],
"title": "CVE-2023-36728"
},
{
"cve": "CVE-2023-36730",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36730"
},
{
"cve": "CVE-2023-36785",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft ODBC Driver for SQL Server Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36785"
},
{
"cve": "CVE-2023-36788",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": ".NET Framework Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36788"
},
{
"cve": "CVE-2023-36792",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "Visual Studio Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36792"
},
{
"cve": "CVE-2023-36793",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "Visual Studio Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36793"
},
{
"cve": "CVE-2023-36794",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "Visual Studio Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36794"
},
{
"cve": "CVE-2023-36796",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "Visual Studio Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36796"
},
{
"cve": "CVE-2023-36873",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": ".NET Framework Spoofing Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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:H/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-36873"
},
{
"cve": "CVE-2023-36899",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "ASP.NET Elevation of Privilege Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/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-0001"
]
}
],
"title": "CVE-2023-36899"
},
{
"cve": "CVE-2023-38169",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Microsoft SQL OLE DB Remote Code Execution Vulnerability",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-38169"
},
{
"cve": "CVE-2023-39615",
"cwe": {
"id": "CWE-119",
"name": "Improper Restriction of Operations within the Bounds of a Memory Buffer"
},
"notes": [
{
"category": "summary",
"text": "Xmlsoft Libxml2 v2.11.0 was discovered to contain an out-of-bounds read via the xmlSAX2StartElement() function at /libxml2/SAX2.c. This vulnerability allows attackers to cause a Denial of Service (DoS) via supplying a crafted XML file. NOTE: the vendor\u0027s position is that the product does not support the legacy SAX1 interface with custom callbacks; there is a crash even without crafted input.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.1.2 or later version",
"product_ids": [
"CSAFPID-0001"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955177/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001"
]
}
],
"title": "CVE-2023-39615"
}
]
}
ICSA-24-165-06
Vulnerability from csaf_cisa - Published: 2024-06-11 00:00 - Updated: 2024-07-09 00:00{
"document": {
"acknowledgments": [
{
"organization": "Siemens ProductCERT",
"summary": "reporting these vulnerabilities to CISA."
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Siemens has released new versions for the affected products and recommends to update to the latest versions.",
"title": "Summary"
},
{
"category": "general",
"text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity",
"title": "General Recommendations"
},
{
"category": "general",
"text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "Siemens Security Advisories are subject to the terms and conditions contained in Siemens\u0027 underlying license terms or other applicable agreements previously agreed to with Siemens (hereinafter \"License Terms\"). To the extent applicable to information, software or documentation made available in or through a Siemens Security Advisory, the Terms of Use of Siemens\u0027 Global Website (https://www.siemens.com/terms_of_use, hereinafter \"Terms of Use\"), in particular Sections 8-10 of the Terms of Use, shall apply additionally. In case of conflicts, the License Terms shall prevail over the Terms of Use.",
"title": "Terms of Use"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Multiple",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Germany",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "SSA-337522: Multiple Vulnerabilities in TIM 1531 IRC before V2.4.8 - CSAF Version",
"url": "https://cert-portal.siemens.com/productcert/csaf/ssa-337522.json"
},
{
"category": "self",
"summary": "SSA-337522: Multiple Vulnerabilities in TIM 1531 IRC before V2.4.8 - HTML Version",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-337522.html"
},
{
"category": "self",
"summary": "SSA-337522: Multiple Vulnerabilities in TIM 1531 IRC before V2.4.8 - PDF Version",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-337522.pdf"
},
{
"category": "self",
"summary": "SSA-337522: Multiple Vulnerabilities in TIM 1531 IRC before V2.4.8 - TXT Version",
"url": "https://cert-portal.siemens.com/productcert/txt/ssa-337522.txt"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-165-06 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-165-06.json"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-165-06 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-165-06"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Siemens TIM 1531 IRC",
"tracking": {
"current_release_date": "2024-07-09T00:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1.0.0"
}
},
"id": "ICSA-24-165-06",
"initial_release_date": "2024-06-11T00:00:00.000000Z",
"revision_history": [
{
"date": "2024-06-11T00:00:00.000000Z",
"legacy_version": "1.0",
"number": "1",
"summary": "Publication Date"
},
{
"date": "2024-07-09T00:00:00.000000Z",
"legacy_version": "1.1",
"number": "2",
"summary": "Updated contents of CVE-2023-27321 (OPC Foundation UA .NET Standard: Description, CVSS vector, CWE)"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.4.8",
"product": {
"name": "SIPLUS TIM 1531 IRC (6AG1543-1MX00-7XE0)",
"product_id": "CSAFPID-0001",
"product_identification_helper": {
"model_numbers": [
"6AG1543-1MX00-7XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIPLUS TIM 1531 IRC (6AG1543-1MX00-7XE0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.4.8",
"product": {
"name": "TIM 1531 IRC (6GK7543-1MX00-0XE0)",
"product_id": "CSAFPID-0002",
"product_identification_helper": {
"model_numbers": [
"6GK7543-1MX00-0XE0"
]
}
}
}
],
"category": "product_name",
"name": "TIM 1531 IRC (6GK7543-1MX00-0XE0)"
}
],
"category": "vendor",
"name": "Siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2021-47178",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "In the Linux kernel, the following vulnerability has been resolved: scsi: target: core: Avoid smp_processor_id() in preemptible code.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2021-47178"
},
{
"cve": "CVE-2022-1015",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "A flaw was found in the Linux kernel in linux/net/netfilter/nf_tables_api.c of the netfilter subsystem. This flaw allows a local user to cause an out-of-bounds write issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.6,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-1015"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-39189",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered the x86 KVM subsystem in the Linux kernel before 5.18.17. Unprivileged guest users can compromise the guest kernel because TLB flush operations are mishandled in certain KVM_VCPU_PREEMPTED situations.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-39189"
},
{
"cve": "CVE-2022-40225",
"cwe": {
"id": "CWE-681",
"name": "Incorrect Conversion between Numeric Types"
},
"notes": [
{
"category": "summary",
"text": "Casting an internal value could lead to floating point exception under certain circumstances. This could allow an attacker to cause a denial of service condition on affected devices.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-40225"
},
{
"cve": "CVE-2022-40303",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. When parsing a multi-gigabyte XML document with the XML_PARSE_HUGE parser option enabled, several integer counters can overflow. This results in an attempt to access an array at a negative 2GB offset, typically leading to a segmentation fault.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. Certain invalid XML entity definitions can corrupt a hash table key, potentially leading to subsequent logic errors. In one case, a double-free can be provoked.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-45886",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel through 6.0.9. drivers/media/dvb-core/dvb_net.c has a .disconnect versus dvb_device_open race condition that leads to a use-after-free.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-45886"
},
{
"cve": "CVE-2022-45887",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel through 6.0.9. drivers/media/usb/ttusb-dec/ttusb_dec.c has a memory leak because of the lack of a dvb_frontend_detach call.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-45887"
},
{
"cve": "CVE-2022-45919",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel through 6.0.10. In drivers/media/dvb-core/dvb_ca_en50221.c, a use-after-free can occur is there is a disconnect after an open, because of the lack of a wait_event.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2022-45919"
},
{
"cve": "CVE-2023-0160",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "summary",
"text": "A deadlock flaw was found in the Linux kernel\u2019s BPF subsystem. This flaw allows a local user to potentially crash the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-0160"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0464",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "A security vulnerability has been identified in all supported versions of OpenSSL related to the verification of X.509 certificate chains that include policy constraints. Attackers may be able to exploit this vulnerability by creating a malicious certificate chain that triggers exponential use of computational resources, leading to a denial-of-service (DoS) attack on affected systems.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing the `-policy` argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0465",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "Applications that use a non-default option when verifying certificates may be\r\nvulnerable to an attack from a malicious CA to circumvent certain checks.\r\n\r\nInvalid certificate policies in leaf certificates are silently ignored by\r\nOpenSSL and other certificate policy checks are skipped for that certificate.\r\nA malicious CA could use this to deliberately assert invalid certificate policies\r\nin order to circumvent policy checking on the certificate altogether.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing\r\nthe `-policy` argument to the command line utilities or by calling the\r\n`X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0466",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-1017",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "An out-of-bounds write vulnerability exists in TPM2.0\u0027s Module Library allowing writing of a 2-byte data past the end of TPM2.0 command in the CryptParameterDecryption routine. An attacker who can successfully exploit this vulnerability can lead to denial of service (crashing the TPM chip/process or rendering it unusable) and/or arbitrary code execution in the TPM context.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-1017"
},
{
"cve": "CVE-2023-2124",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "An out-of-bounds memory access flaw was found in the Linux kernel\u2019s XFS file system in how a user restores an XFS image after failure (with a dirty log journal). This flaw allows a local user to crash or potentially escalate their privileges on the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-2124"
},
{
"cve": "CVE-2023-2269",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "summary",
"text": "A denial of service problem was found, due to a possible recursive locking scenario, resulting in a deadlock in table_clear in drivers/md/dm-ioctl.c in the Linux Kernel Device Mapper-Multipathing sub-component.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-2269"
},
{
"cve": "CVE-2023-21255",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "In multiple functions of binder.c, there is a possible memory corruption due to a use after free. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-21255"
},
{
"cve": "CVE-2023-27321",
"cwe": {
"id": "CWE-1325",
"name": "Improperly Controlled Sequential Memory Allocation"
},
"notes": [
{
"category": "summary",
"text": "OPC Foundation UA .NET Standard ConditionRefresh Resource Exhaustion Denial-of-Service Vulnerability. This vulnerability allows remote attackers to create a denial-of-service condition on affected installations of OPC Foundation UA .NET Standard. Authentication is not required to exploit this vulnerability. The specific flaw exists within the handling of OPC UA ConditionRefresh requests. By sending a large number of requests, an attacker can consume all available resources on the server. An attacker can leverage this vulnerability to create a denial-of-service condition on the system. Was ZDI-CAN-20505.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-27321"
},
{
"cve": "CVE-2023-28319",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A use after free vulnerability exists in curl \u003cv8.1.0 in the way libcurl offers a feature to verify an SSH server\u0027s public key using a SHA 256 hash. When this check fails, libcurl would free the memory for the fingerprint before it returns an error message containing the (now freed) hash. This flaw risks inserting sensitive heap-based data into the error message that might be shown to users or otherwise get leaked and revealed.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-28319"
},
{
"cve": "CVE-2023-35788",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in fl_set_geneve_opt in net/sched/cls_flower.c in the Linux kernel before 6.3.7. It allows an out-of-bounds write in the flower classifier code via TCA_FLOWER_KEY_ENC_OPTS_GENEVE packets. This may result in denial of service or privilege escalation.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-35788"
},
{
"cve": "CVE-2023-35823",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel before 6.3.2. A use-after-free was found in saa7134_finidev in drivers/media/pci/saa7134/saa7134-core.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-35823"
},
{
"cve": "CVE-2023-35824",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel before 6.3.2. A use-after-free was found in dm1105_remove in drivers/media/pci/dm1105/dm1105.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-35824"
},
{
"cve": "CVE-2023-35828",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel before 6.3.2. A use-after-free was found in renesas_usb3_remove in drivers/usb/gadget/udc/renesas_usb3.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-35828"
},
{
"cve": "CVE-2023-35829",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel before 6.3.2. A use-after-free was found in rkvdec_remove in drivers/staging/media/rkvdec/rkvdec.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-35829"
},
{
"cve": "CVE-2023-41910",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in lldpd before 1.0.17. By crafting a CDP PDU packet with specific CDP_TLV_ADDRESSES TLVs, a malicious actor can remotely force the lldpd daemon to perform an out-of-bounds read on heap memory. This occurs in cdp_decode in daemon/protocols/cdp.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-41910"
},
{
"cve": "CVE-2023-50763",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"notes": [
{
"category": "summary",
"text": "The web server of affected products, if configured to allow the import of PKCS12 containers, could end up in an infinite loop when processing incomplete certificate chains.\r\n\r\nThis could allow an authenticated remote attacker to create a denial of service condition by importing specially crafted PKCS12 containers.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-50763"
},
{
"cve": "CVE-2023-52474",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "In the Linux kernel, the following vulnerability has been resolved: IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests hfi1 user SDMA request processing has two bugs that can cause data corruption for user SDMA requests that have multiple payload iovecs where an iovec other than the tail iovec does not run up to the page boundary for the buffer pointed to by that iovec.a Here are the specific bugs: 1. user_sdma_txadd() does not use struct user_sdma_iovec-\u003eiov.iov_len. Rather, user_sdma_txadd() will add up to PAGE_SIZE bytes from iovec to the packet, even if some of those bytes are past iovec-\u003eiov.iov_len and are thus not intended to be in the packet. 2. user_sdma_txadd() and user_sdma_send_pkts() fail to advance to the next iovec in user_sdma_request-\u003eiovs when the current iovec is not PAGE_SIZE and does not contain enough data to complete the packet. The transmitted packet will contain the wrong data from the iovec pages. This has not been an issue with SDMA packets from hfi1 Verbs or PSM2 because they only produce iovecs that end short of PAGE_SIZE as the tail iovec of an SDMA request. Fixing these bugs exposes other bugs with the SDMA pin cache (struct mmu_rb_handler) that get in way of supporting user SDMA requests with multiple payload iovecs whose buffers do not end at PAGE_SIZE. So this commit fixes those issues as well. Here are the mmu_rb_handler bugs that non-PAGE_SIZE-end multi-iovec payload user SDMA requests can hit: 1. Overlapping memory ranges in mmu_rb_handler will result in duplicate pinnings. 2. When extending an existing mmu_rb_handler entry (struct mmu_rb_node), the mmu_rb code (1) removes the existing entry under a lock, (2) releases that lock, pins the new pages, (3) then reacquires the lock to insert the extended mmu_rb_node. If someone else comes in and inserts an overlapping entry between (2) and (3), insert in (3) will fail. The failure path code in this case unpins _all_ pages in either the original mmu_rb_node or the new mmu_rb_node that was inserted between (2) and (3). 3. In hfi1_mmu_rb_remove_unless_exact(), mmu_rb_node-\u003erefcount is incremented outside of mmu_rb_handler-\u003elock. As a result, mmu_rb_node could be evicted by another thread that gets mmu_rb_handler-\u003elock and checks mmu_rb_node-\u003erefcount before mmu_rb_node-\u003erefcount is incremented. 4. Related to #2 above, SDMA request submission failure path does not check mmu_rb_node-\u003erefcount before freeing mmu_rb_node object. If there are other SDMA requests in progress whose iovecs have pointers to the now-freed mmu_rb_node(s), those pointers to the now-freed mmu_rb nodes will be dereferenced when those SDMA requests complete.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2023-52474"
},
{
"cve": "CVE-2024-0775",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "A use-after-free flaw was found in the __ext4_remount in fs/ext4/super.c in ext4 in the Linux kernel. This flaw allows a local user to cause an information leak problem while freeing the old quota file names before a potential failure, leading to a use-after-free.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.4.8 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954889/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002"
]
}
],
"title": "CVE-2024-0775"
}
]
}
ICSA-24-165-10
Vulnerability from csaf_cisa - Published: 2024-06-11 00:00 - Updated: 2024-06-11 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)
|
6GK7542-6UX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
Siemens / SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)
|
6GK7542-6VX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
Siemens / SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)
|
6GK7543-6WX00-0XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)
|
6AG2542-6VX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)
|
6AG1543-6WX00-7XE0
|
<V2.3 |
Vendor Fix
fix
|
|
SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
Siemens / SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)
|
6AG2543-6WX00-4XE0
|
<V2.3 |
Vendor Fix
fix
|
{
"document": {
"acknowledgments": [
{
"organization": "Siemens ProductCERT",
"summary": "reporting these vulnerabilities to CISA."
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "SIMATIC CP 1542SP-1 and CP 1543SP-1 before V2.3 are affected by multiple vulnerabilities in third-party components and the integrated web server.\n\nSiemens has released new versions for the affected products and recommends to update to the latest versions.",
"title": "Summary"
},
{
"category": "general",
"text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity",
"title": "General Recommendations"
},
{
"category": "general",
"text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "Siemens Security Advisories are subject to the terms and conditions contained in Siemens\u0027 underlying license terms or other applicable agreements previously agreed to with Siemens (hereinafter \"License Terms\"). To the extent applicable to information, software or documentation made available in or through a Siemens Security Advisory, the Terms of Use of Siemens\u0027 Global Website (https://www.siemens.com/terms_of_use, hereinafter \"Terms of Use\"), in particular Sections 8-10 of the Terms of Use, shall apply additionally. In case of conflicts, the License Terms shall prevail over the Terms of Use.",
"title": "Terms of Use"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Multiple",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Germany",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "SSA-625862: Multiple Vulnerabilities in Third-Party Components in SIMATIC CP 1542SP-1 and CP 1543SP-1 before V2.3 - CSAF Version",
"url": "https://cert-portal.siemens.com/productcert/csaf/ssa-625862.json"
},
{
"category": "self",
"summary": "SSA-625862: Multiple Vulnerabilities in Third-Party Components in SIMATIC CP 1542SP-1 and CP 1543SP-1 before V2.3 - HTML Version",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-625862.html"
},
{
"category": "self",
"summary": "SSA-625862: Multiple Vulnerabilities in Third-Party Components in SIMATIC CP 1542SP-1 and CP 1543SP-1 before V2.3 - PDF Version",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-625862.pdf"
},
{
"category": "self",
"summary": "SSA-625862: Multiple Vulnerabilities in Third-Party Components in SIMATIC CP 1542SP-1 and CP 1543SP-1 before V2.3 - TXT Version",
"url": "https://cert-portal.siemens.com/productcert/txt/ssa-625862.txt"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-165-10 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-165-10.json"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-165-10 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-165-10"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Siemens SIMATIC and SIPLUS",
"tracking": {
"current_release_date": "2024-06-11T00:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1"
}
},
"id": "ICSA-24-165-10",
"initial_release_date": "2024-06-11T00:00:00.000000Z",
"revision_history": [
{
"date": "2024-06-11T00:00:00.000000Z",
"legacy_version": "1.0",
"number": "1",
"summary": "Publication Date"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.3",
"product": {
"name": "SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)",
"product_id": "CSAFPID-0001",
"product_identification_helper": {
"model_numbers": [
"6GK7542-6UX00-0XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIMATIC CP 1542SP-1 (6GK7542-6UX00-0XE0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.3",
"product": {
"name": "SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)",
"product_id": "CSAFPID-0002",
"product_identification_helper": {
"model_numbers": [
"6GK7542-6VX00-0XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIMATIC CP 1542SP-1 IRC (6GK7542-6VX00-0XE0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.3",
"product": {
"name": "SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)",
"product_id": "CSAFPID-0003",
"product_identification_helper": {
"model_numbers": [
"6GK7543-6WX00-0XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIMATIC CP 1543SP-1 (6GK7543-6WX00-0XE0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.3",
"product": {
"name": "SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)",
"product_id": "CSAFPID-0004",
"product_identification_helper": {
"model_numbers": [
"6AG2542-6VX00-4XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIPLUS ET 200SP CP 1542SP-1 IRC TX RAIL (6AG2542-6VX00-4XE0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.3",
"product": {
"name": "SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)",
"product_id": "CSAFPID-0005",
"product_identification_helper": {
"model_numbers": [
"6AG1543-6WX00-7XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIPLUS ET 200SP CP 1543SP-1 ISEC (6AG1543-6WX00-7XE0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV2.3",
"product": {
"name": "SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)",
"product_id": "CSAFPID-0006",
"product_identification_helper": {
"model_numbers": [
"6AG2543-6WX00-4XE0"
]
}
}
}
],
"category": "product_name",
"name": "SIPLUS ET 200SP CP 1543SP-1 ISEC TX RAIL (6AG2543-6WX00-4XE0)"
}
],
"category": "vendor",
"name": "Siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-2097",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn\u0027t written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-2097"
},
{
"cve": "CVE-2022-3435",
"cwe": {
"id": "CWE-119",
"name": "Improper Restriction of Operations within the Bounds of a Memory Buffer"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability classified as problematic has been found in Linux Kernel. This affects the function fib_nh_match of the file net/ipv4/fib_semantics.c of the component IPv4 Handler. The manipulation leads to out-of-bounds read. It is possible to initiate the attack remotely. It is recommended to apply a patch to fix this issue. The identifier VDB-210357 was assigned to this vulnerability.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-3435"
},
{
"cve": "CVE-2022-3545",
"cwe": {
"id": "CWE-119",
"name": "Improper Restriction of Operations within the Bounds of a Memory Buffer"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability has been found in Linux Kernel and classified as critical. Affected by this vulnerability is the function area_cache_get of the file drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.c of the component IPsec. The manipulation leads to use after free. It is recommended to apply a patch to fix this issue. The identifier VDB-211045 was assigned to this vulnerability.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-3545"
},
{
"cve": "CVE-2022-3623",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability was found in Linux Kernel. It has been declared as problematic. Affected by this vulnerability is the function follow_page_pte of the file mm/gup.c of the component BPF. The manipulation leads to race condition. The attack can be launched remotely. It is recommended to apply a patch to fix this issue. The identifier VDB-211921 was assigned to this vulnerability.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.0,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-3623"
},
{
"cve": "CVE-2022-3643",
"cwe": {
"id": "CWE-74",
"name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)"
},
"notes": [
{
"category": "summary",
"text": "Guests can trigger NIC interface reset/abort/crash via netback It is possible for a guest to trigger a NIC interface reset/abort/crash in a Linux based network backend by sending certain kinds of packets. It appears to be an (unwritten?) assumption in the rest of the Linux network stack that packet protocol headers are all contained within the linear section of the SKB and some NICs behave badly if this is not the case. This has been reported to occur with Cisco (enic) and Broadcom NetXtrem II BCM5780 (bnx2x) though it may be an issue with other NICs/drivers as well. In case the frontend is sending requests with split headers, netback will forward those violating above mentioned assumption to the networking core, resulting in said misbehavior.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-3643"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-40303",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. When parsing a multi-gigabyte XML document with the XML_PARSE_HUGE parser option enabled, several integer counters can overflow. This results in an attempt to access an array at a negative 2GB offset, typically leading to a segmentation fault.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. Certain invalid XML entity definitions can corrupt a hash table key, potentially leading to subsequent logic errors. In one case, a double-free can be provoked.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-42328",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "summary",
"text": "Guests can trigger deadlock in Linux netback driver [This CNA information record relates to multiple CVEs; the text explains which aspects/vulnerabilities correspond to which CVE.] The patch for XSA-392 introduced another issue which might result in a deadlock when trying to free the SKB of a packet dropped due to the XSA-392 handling (CVE-2022-42328). Additionally when dropping packages for other reasons the same deadlock could occur in case of netpoll being active for the interface the xen-netback driver is connected to (CVE-2022-42329).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-42328"
},
{
"cve": "CVE-2022-42329",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "summary",
"text": "Guests can trigger deadlock in Linux netback drive. The patch for XSA-392 introduced another issue which might result in a deadlock when trying to free the SKB of a packet dropped due to the XSA-392 handling (CVE-2022-42328). Additionally when dropping packages for other reasons the same deadlock could occur in case of netpoll being active for the interface the xen-netback driver is connected to (CVE-2022-42329).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-42329"
},
{
"cve": "CVE-2022-44792",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "handle_ipDefaultTTL in agent/mibgroup/ip-mib/ip_scalars.c in Net-SNMP 5.8 through 5.9.3 has a NULL Pointer Exception bug that can be used by a remote attacker (who has write access) to cause the instance to crash via a crafted UDP packet, resulting in Denial of Service.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-44792"
},
{
"cve": "CVE-2022-44793",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "handle_ipv6IpForwarding in agent/mibgroup/ip-mib/ip_scalars.c in Net-SNMP 5.4.3 through 5.9.3 has a NULL Pointer Exception bug that can be used by a remote attacker to cause the instance to crash via a crafted UDP packet, resulting in Denial of Service.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2022-44793"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0464",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "A security vulnerability has been identified in all supported versions of OpenSSL related to the verification of X.509 certificate chains that include policy constraints. Attackers may be able to exploit this vulnerability by creating a malicious certificate chain that triggers exponential use of computational resources, leading to a denial-of-service (DoS) attack on affected systems.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing the `-policy` argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0465",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "Applications that use a non-default option when verifying certificates may be\r\nvulnerable to an attack from a malicious CA to circumvent certain checks.\r\n\r\nInvalid certificate policies in leaf certificates are silently ignored by\r\nOpenSSL and other certificate policy checks are skipped for that certificate.\r\nA malicious CA could use this to deliberately assert invalid certificate policies\r\nin order to circumvent policy checking on the certificate altogether.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing\r\nthe `-policy` argument to the command line utilities or by calling the\r\n`X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0466",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-28484",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "In libxml2 before 2.10.4, parsing of certain invalid XSD schemas can lead to a NULL pointer dereference and subsequently a segfault. This occurs in xmlSchemaFixupComplexType in xmlschemas.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-28484"
},
{
"cve": "CVE-2023-29469",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.4. When hashing empty dict strings in a crafted XML document, xmlDictComputeFastKey in dict.c can produce non-deterministic values, leading to various logic and memory errors, such as a double free. This behavior occurs because there is an attempt to use the first byte of an empty string, and any value is possible (not solely the \u0027\\0\u0027 value).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-29469"
},
{
"cve": "CVE-2023-38380",
"cwe": {
"id": "CWE-401",
"name": "Missing Release of Memory after Effective Lifetime"
},
"notes": [
{
"category": "summary",
"text": "The webserver implementation of the affected products does not correctly release allocated memory after it has been used.\r\n\r\nAn attacker with network access could use this vulnerability to cause a denial-of-service condition in the webserver of the affected product.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-38380"
},
{
"cve": "CVE-2023-41910",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in lldpd before 1.0.17. By crafting a CDP PDU packet with specific CDP_TLV_ADDRESSES TLVs, a malicious actor can remotely force the lldpd daemon to perform an out-of-bounds read on heap memory. This occurs in cdp_decode in daemon/protocols/cdp.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-41910"
},
{
"cve": "CVE-2023-50763",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"notes": [
{
"category": "summary",
"text": "The web server of affected products, if configured to allow the import of PKCS12 containers, could end up in an infinite loop when processing incomplete certificate chains.\r\n\r\nThis could allow an authenticated remote attacker to create a denial of service condition by importing specially crafted PKCS12 containers.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V2.3 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109954475/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006"
]
}
],
"title": "CVE-2023-50763"
}
]
}
ICSA-24-165-11
Vulnerability from csaf_cisa - Published: 2024-06-11 00:00 - Updated: 2024-06-11 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
Siemens / SCALANCE XM408-4C (6GK5408-4GP00-2AM2)
|
6GK5408-4GP00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
Siemens / SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)
|
6GK5408-4GQ00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
Siemens / SCALANCE XM408-8C (6GK5408-8GS00-2AM2)
|
6GK5408-8GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
Siemens / SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)
|
6GK5408-8GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
Siemens / SCALANCE XM416-4C (6GK5416-4GS00-2AM2)
|
6GK5416-4GS00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
Siemens / SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)
|
6GK5416-4GR00-2AM2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)
|
6GK5524-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
Siemens / SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)
|
6GK5524-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)
|
6GK5524-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
Siemens / SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)
|
6GK5524-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)
|
6GK5524-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
Siemens / SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)
|
6GK5524-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)
|
6GK5526-8GS00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
Siemens / SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)
|
6GK5526-8GR00-3AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)
|
6GK5526-8GS00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
Siemens / SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)
|
6GK5526-8GR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)
|
6GK5526-8GS00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
Siemens / SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)
|
6GK5526-8GR00-4AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
Siemens / SCALANCE XR528-6M (6GK5528-0AA00-2AR2)
|
6GK5528-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)
|
6GK5528-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
Siemens / SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)
|
6GK5528-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
Siemens / SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)
|
6GK5528-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
Siemens / SCALANCE XR552-12M (6GK5552-0AA00-2AR2)
|
6GK5552-0AA00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
Siemens / SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)
|
6GK5552-0AR00-2AR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)
|
6GK5552-0AA00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
|
SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
Siemens / SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)
|
6GK5552-0AR00-2HR2
|
<V6.6.1 |
Vendor Fix
fix
|
{
"document": {
"acknowledgments": [
{
"organization": "Siemens ProductCERT",
"summary": "reporting these vulnerabilities to CISA."
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Siemens has released new versions for the affected products and recommends to update to the latest versions.",
"title": "Summary"
},
{
"category": "general",
"text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity",
"title": "General Recommendations"
},
{
"category": "general",
"text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "Siemens Security Advisories are subject to the terms and conditions contained in Siemens\u0027 underlying license terms or other applicable agreements previously agreed to with Siemens (hereinafter \"License Terms\"). To the extent applicable to information, software or documentation made available in or through a Siemens Security Advisory, the Terms of Use of Siemens\u0027 Global Website (https://www.siemens.com/terms_of_use, hereinafter \"Terms of Use\"), in particular Sections 8-10 of the Terms of Use, shall apply additionally. In case of conflicts, the License Terms shall prevail over the Terms of Use.",
"title": "Terms of Use"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Multiple",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Germany",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "SSA-879734: Multiple Vulnerabilities in SCALANCE XM-400/XR-500 before V6.6.1 - CSAF Version",
"url": "https://cert-portal.siemens.com/productcert/csaf/ssa-879734.json"
},
{
"category": "self",
"summary": "SSA-879734: Multiple Vulnerabilities in SCALANCE XM-400/XR-500 before V6.6.1 - HTML Version",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-879734.html"
},
{
"category": "self",
"summary": "SSA-879734: Multiple Vulnerabilities in SCALANCE XM-400/XR-500 before V6.6.1 - PDF Version",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-879734.pdf"
},
{
"category": "self",
"summary": "SSA-879734: Multiple Vulnerabilities in SCALANCE XM-400/XR-500 before V6.6.1 - TXT Version",
"url": "https://cert-portal.siemens.com/productcert/txt/ssa-879734.txt"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-165-11 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-165-11.json"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-24-165-11 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-165-11"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Siemens SCALANCE XM-400, XR-500",
"tracking": {
"current_release_date": "2024-06-11T00:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1"
}
},
"id": "ICSA-24-165-11",
"initial_release_date": "2024-06-11T00:00:00.000000Z",
"revision_history": [
{
"date": "2024-06-11T00:00:00.000000Z",
"legacy_version": "1.0",
"number": "1",
"summary": "Publication Date"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XM408-4C (6GK5408-4GP00-2AM2)",
"product_id": "CSAFPID-0001",
"product_identification_helper": {
"model_numbers": [
"6GK5408-4GP00-2AM2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XM408-4C (6GK5408-4GP00-2AM2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)",
"product_id": "CSAFPID-0002",
"product_identification_helper": {
"model_numbers": [
"6GK5408-4GQ00-2AM2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XM408-4C (L3 int.) (6GK5408-4GQ00-2AM2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XM408-8C (6GK5408-8GS00-2AM2)",
"product_id": "CSAFPID-0003",
"product_identification_helper": {
"model_numbers": [
"6GK5408-8GS00-2AM2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XM408-8C (6GK5408-8GS00-2AM2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)",
"product_id": "CSAFPID-0004",
"product_identification_helper": {
"model_numbers": [
"6GK5408-8GR00-2AM2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XM408-8C (L3 int.) (6GK5408-8GR00-2AM2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XM416-4C (6GK5416-4GS00-2AM2)",
"product_id": "CSAFPID-0005",
"product_identification_helper": {
"model_numbers": [
"6GK5416-4GS00-2AM2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XM416-4C (6GK5416-4GS00-2AM2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)",
"product_id": "CSAFPID-0006",
"product_identification_helper": {
"model_numbers": [
"6GK5416-4GR00-2AM2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XM416-4C (L3 int.) (6GK5416-4GR00-2AM2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)",
"product_id": "CSAFPID-0007",
"product_identification_helper": {
"model_numbers": [
"6GK5524-8GS00-3AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR524-8C, 1x230V (6GK5524-8GS00-3AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)",
"product_id": "CSAFPID-0008",
"product_identification_helper": {
"model_numbers": [
"6GK5524-8GR00-3AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR524-8C, 1x230V (L3 int.) (6GK5524-8GR00-3AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)",
"product_id": "CSAFPID-0009",
"product_identification_helper": {
"model_numbers": [
"6GK5524-8GS00-4AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR524-8C, 2x230V (6GK5524-8GS00-4AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)",
"product_id": "CSAFPID-0010",
"product_identification_helper": {
"model_numbers": [
"6GK5524-8GR00-4AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR524-8C, 2x230V (L3 int.) (6GK5524-8GR00-4AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)",
"product_id": "CSAFPID-0011",
"product_identification_helper": {
"model_numbers": [
"6GK5524-8GS00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR524-8C, 24V (6GK5524-8GS00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)",
"product_id": "CSAFPID-0012",
"product_identification_helper": {
"model_numbers": [
"6GK5524-8GR00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR524-8C, 24V (L3 int.) (6GK5524-8GR00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)",
"product_id": "CSAFPID-0013",
"product_identification_helper": {
"model_numbers": [
"6GK5526-8GS00-3AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR526-8C, 1x230V (6GK5526-8GS00-3AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)",
"product_id": "CSAFPID-0014",
"product_identification_helper": {
"model_numbers": [
"6GK5526-8GR00-3AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR526-8C, 1x230V (L3 int.) (6GK5526-8GR00-3AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)",
"product_id": "CSAFPID-0015",
"product_identification_helper": {
"model_numbers": [
"6GK5526-8GS00-4AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR526-8C, 2x230V (6GK5526-8GS00-4AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)",
"product_id": "CSAFPID-0016",
"product_identification_helper": {
"model_numbers": [
"6GK5526-8GR00-4AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR526-8C, 2x230V (L3 int.) (6GK5526-8GR00-4AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)",
"product_id": "CSAFPID-0017",
"product_identification_helper": {
"model_numbers": [
"6GK5526-8GS00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR526-8C, 24V (6GK5526-8GS00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)",
"product_id": "CSAFPID-0018",
"product_identification_helper": {
"model_numbers": [
"6GK5526-8GR00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR526-8C, 24V (L3 int.) (6GK5526-8GR00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)",
"product_id": "CSAFPID-0019",
"product_identification_helper": {
"model_numbers": [
"6GK5528-0AA00-2HR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR528-6M (2HR2) (6GK5528-0AA00-2HR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)",
"product_id": "CSAFPID-0020",
"product_identification_helper": {
"model_numbers": [
"6GK5528-0AR00-2HR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR528-6M (2HR2, L3 int.) (6GK5528-0AR00-2HR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR528-6M (6GK5528-0AA00-2AR2)",
"product_id": "CSAFPID-0021",
"product_identification_helper": {
"model_numbers": [
"6GK5528-0AA00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR528-6M (6GK5528-0AA00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)",
"product_id": "CSAFPID-0022",
"product_identification_helper": {
"model_numbers": [
"6GK5528-0AR00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR528-6M (L3 int.) (6GK5528-0AR00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)",
"product_id": "CSAFPID-0023",
"product_identification_helper": {
"model_numbers": [
"6GK5552-0AA00-2HR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR552-12M (2HR2) (6GK5552-0AA00-2HR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)",
"product_id": "CSAFPID-0024",
"product_identification_helper": {
"model_numbers": [
"6GK5552-0AR00-2HR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR552-12M (2HR2) (6GK5552-0AR00-2HR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)",
"product_id": "CSAFPID-0025",
"product_identification_helper": {
"model_numbers": [
"6GK5552-0AR00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR552-12M (2HR2, L3 int.) (6GK5552-0AR00-2AR2)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV6.6.1",
"product": {
"name": "SCALANCE XR552-12M (6GK5552-0AA00-2AR2)",
"product_id": "CSAFPID-0026",
"product_identification_helper": {
"model_numbers": [
"6GK5552-0AA00-2AR2"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE XR552-12M (6GK5552-0AA00-2AR2)"
}
],
"category": "vendor",
"name": "Siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-2097",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "AES OCB mode for 32-bit x86 platforms using the AES-NI assembly optimised implementation will not encrypt the entirety of the data under some circumstances. This could reveal sixteen bytes of data that was preexisting in the memory that wasn\u0027t written. In the special case of \"in place\" encryption, sixteen bytes of the plaintext would be revealed. Since OpenSSL does not support OCB based cipher suites for TLS and DTLS, they are both unaffected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2022-2097"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0464",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "A security vulnerability has been identified in all supported versions of OpenSSL related to the verification of X.509 certificate chains that include policy constraints. Attackers may be able to exploit this vulnerability by creating a malicious certificate chain that triggers exponential use of computational resources, leading to a denial-of-service (DoS) attack on affected systems.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing the `-policy` argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0465",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "Applications that use a non-default option when verifying certificates may be\r\nvulnerable to an attack from a malicious CA to circumvent certain checks.\r\n\r\nInvalid certificate policies in leaf certificates are silently ignored by\r\nOpenSSL and other certificate policy checks are skipped for that certificate.\r\nA malicious CA could use this to deliberately assert invalid certificate policies\r\nin order to circumvent policy checking on the certificate altogether.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing\r\nthe `-policy` argument to the command line utilities or by calling the\r\n`X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0466",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "The function X509_VERIFY_PARAM_add0_policy() is documented to\nimplicitly enable the certificate policy check when doing certificate\nverification. However the implementation of the function does not\nenable the check which allows certificates with invalid or incorrect\npolicies to pass the certificate verification.\n\nAs suddenly enabling the policy check could break existing deployments it was\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\nfunction.\n\nInstead the applications that require OpenSSL to perform certificate\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\nthe X509_V_FLAG_POLICY_CHECK flag argument.\n\nCertificate policy checks are disabled by default in OpenSSL and are not\ncommonly used by applications.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V6.6.1 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109955252/"
}
],
"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:L/A:N/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0021",
"CSAFPID-0020",
"CSAFPID-0019",
"CSAFPID-0022",
"CSAFPID-0026",
"CSAFPID-0025",
"CSAFPID-0023",
"CSAFPID-0024"
]
}
],
"title": "CVE-2023-0466"
}
]
}
ICSA-24-205-02
Vulnerability from csaf_cisa - Published: 2024-07-23 06:00 - Updated: 2024-07-23 06:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Hitachi Energy AFS650: <=9.1.08
Hitachi Energy / AFS650
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS660-C: <=7.1.05
Hitachi Energy / AFS660-C
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS665-B: <=7.1.05
Hitachi Energy / AFS665-B
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670-V2: <=7.1.05
Hitachi Energy / AFS670-V2
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670: <=9.1.08
Hitachi Energy / AFS670
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS675: <=9.1.08
Hitachi Energy / AFS675
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS677: <=9.1.08
Hitachi Energy / AFS677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFR677: <=9.1.08
Hitachi Energy / AFR677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Hitachi Energy AFS650: <=9.1.08
Hitachi Energy / AFS650
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS660-C: <=7.1.05
Hitachi Energy / AFS660-C
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS665-B: <=7.1.05
Hitachi Energy / AFS665-B
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670-V2: <=7.1.05
Hitachi Energy / AFS670-V2
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670: <=9.1.08
Hitachi Energy / AFS670
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS675: <=9.1.08
Hitachi Energy / AFS675
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS677: <=9.1.08
Hitachi Energy / AFS677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFR677: <=9.1.08
Hitachi Energy / AFR677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Hitachi Energy AFS650: <=9.1.08
Hitachi Energy / AFS650
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS660-C: <=7.1.05
Hitachi Energy / AFS660-C
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS665-B: <=7.1.05
Hitachi Energy / AFS665-B
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670-V2: <=7.1.05
Hitachi Energy / AFS670-V2
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670: <=9.1.08
Hitachi Energy / AFS670
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS675: <=9.1.08
Hitachi Energy / AFS675
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS677: <=9.1.08
Hitachi Energy / AFS677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFR677: <=9.1.08
Hitachi Energy / AFR677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Hitachi Energy AFS650: <=9.1.08
Hitachi Energy / AFS650
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS660-C: <=7.1.05
Hitachi Energy / AFS660-C
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS665-B: <=7.1.05
Hitachi Energy / AFS665-B
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670-V2: <=7.1.05
Hitachi Energy / AFS670-V2
|
<=7.1.05 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS670: <=9.1.08
Hitachi Energy / AFS670
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS675: <=9.1.08
Hitachi Energy / AFS675
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFS677: <=9.1.08
Hitachi Energy / AFS677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
|
|
Hitachi Energy AFR677: <=9.1.08
Hitachi Energy / AFR677
|
<=9.1.08 |
Mitigation
Vendor Fix
Mitigation
Mitigation
fix
|
{
"document": {
"acknowledgments": [
{
"organization": "Hitachi Energy",
"summary": "reporting these vulnerabilities to CISA"
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en-US",
"notes": [
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "summary",
"text": "Successful exploitation of these vulnerabilities could allow an attacker to create a denial-of-service condition.",
"title": "Risk evaluation"
},
{
"category": "other",
"text": "Energy",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Switzerland",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the risk of exploitation of these vulnerabilities, such as:",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, ensuring they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolating them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most current version available. Also recognize VPN is only as secure as the connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov/ics. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov/ics in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also recommends users take the following measures to protect themselves from social engineering attacks:",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Do not click web links or open attachments in unsolicited email messages.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Refer to Recognizing and Avoiding Email Scams for more information on avoiding email scams.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Refer to Avoiding Social Engineering and Phishing Attacks for more information on social engineering attacks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "No known public exploitation specifically targeting these vulnerabilities has been reported to CISA at this time.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "coordinator",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "ICS Advisory ICSA-24-205-02 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2024/icsa-24-205-02.json"
},
{
"category": "self",
"summary": "ICSA Advisory ICSA-24-205-02 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-24-205-02"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/sites/default/files/publications/emailscams0905.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ncas/tips/ST04-014"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Hitachi Energy AFS/AFR Series Products",
"tracking": {
"current_release_date": "2024-07-23T06:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1.0.0"
}
},
"id": "ICSA-24-205-02",
"initial_release_date": "2024-07-23T06:00:00.000000Z",
"revision_history": [
{
"date": "2024-07-23T06:00:00.000000Z",
"legacy_version": "Initial",
"number": "1",
"summary": "Initial Publication"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=9.1.08",
"product": {
"name": "Hitachi Energy AFS650: \u003c=9.1.08",
"product_id": "CSAFPID-0001"
}
}
],
"category": "product_name",
"name": "AFS650"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=7.1.05",
"product": {
"name": "Hitachi Energy AFS660-C: \u003c=7.1.05",
"product_id": "CSAFPID-0002"
}
}
],
"category": "product_name",
"name": "AFS660-C"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=7.1.05",
"product": {
"name": "Hitachi Energy AFS665-B: \u003c=7.1.05",
"product_id": "CSAFPID-0003"
}
}
],
"category": "product_name",
"name": "AFS665-B"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=7.1.05",
"product": {
"name": "Hitachi Energy AFS670-V2: \u003c=7.1.05",
"product_id": "CSAFPID-0004"
}
}
],
"category": "product_name",
"name": "AFS670-V2"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=9.1.08",
"product": {
"name": "Hitachi Energy AFS670: \u003c=9.1.08",
"product_id": "CSAFPID-0005"
}
}
],
"category": "product_name",
"name": "AFS670"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=9.1.08",
"product": {
"name": "Hitachi Energy AFS675: \u003c=9.1.08",
"product_id": "CSAFPID-0006"
}
}
],
"category": "product_name",
"name": "AFS675"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=9.1.08",
"product": {
"name": "Hitachi Energy AFS677: \u003c=9.1.08",
"product_id": "CSAFPID-0007"
}
}
],
"category": "product_name",
"name": "AFS677"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=9.1.08",
"product": {
"name": "Hitachi Energy AFR677: \u003c=9.1.08",
"product_id": "CSAFPID-0008"
}
}
],
"category": "product_name",
"name": "AFR677"
}
],
"category": "vendor",
"name": "Hitachi Energy"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. For more details check the NVD link.",
"title": "Vulnerability Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
"references": [
{
"category": "external",
"summary": "web.nvd.nist.gov",
"url": "http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0286"
},
{
"category": "external",
"summary": "www.first.org",
"url": "https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H"
}
],
"remediations": [
{
"category": "mitigation",
"details": "Hitachi Energy has released the following mitigations/fixes:",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "vendor_fix",
"details": "AFS650: Update to AFS 650 firmware version 9.1.10",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "AFS660-C, AFS665-B, AFS670-V2: Update to AFS 66x firmware version 7.1.08",
"product_ids": [
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004"
]
},
{
"category": "vendor_fix",
"details": "AFS670/675/677, AFR677: Update to AFS/AFR 67x firmware version 9.1.10",
"product_ids": [
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "In addition, recommended security practices and firewall configurations can help protect a process control network from attacks that originate from outside the network. Such practices include that process control systems are physically protected from direct access by unauthorized personnel, have no direct connections to the Internet, and are separated from other networks by means of a firewall system that has a minimal number of ports exposed, and others that have to be evaluated case by case. Process control systems should not be used for Internet surfing, instant messaging, or receiving e-mails. Portable computers and removable storage media should be carefully scanned for viruses before they are connected to a control system.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "For more information, see Hitachi Energy\u0027s Cybersecurity Advisory.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
],
"url": "https://publisher.hitachienergy.com/preview?DocumentId=8DBD000164\u0026languageCode=en\u0026Preview=true"
}
],
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
}
]
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by end user applications. For more details check the NVD link.",
"title": "Vulnerability Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
"references": [
{
"category": "external",
"summary": "web.nvd.nist.gov",
"url": "http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2023-0215"
},
{
"category": "external",
"summary": "www.first.org",
"url": "https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
}
],
"remediations": [
{
"category": "mitigation",
"details": "Hitachi Energy has released the following mitigations/fixes:",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "vendor_fix",
"details": "AFS650: Update to AFS 650 firmware version 9.1.10",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "AFS660-C, AFS665-B, AFS670-V2: Update to AFS 66x firmware version 7.1.08",
"product_ids": [
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004"
]
},
{
"category": "vendor_fix",
"details": "AFS670/675/677, AFR677: Update to AFS/AFR 67x firmware version 9.1.10",
"product_ids": [
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "In addition, recommended security practices and firewall configurations can help protect a process control network from attacks that originate from outside the network. Such practices include that process control systems are physically protected from direct access by unauthorized personnel, have no direct connections to the Internet, and are separated from other networks by means of a firewall system that has a minimal number of ports exposed, and others that have to be evaluated case by case. Process control systems should not be used for Internet surfing, instant messaging, or receiving e-mails. Portable computers and removable storage media should be carefully scanned for viruses before they are connected to a control system.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "For more information, see Hitachi Energy\u0027s Cybersecurity Advisory.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
],
"url": "https://publisher.hitachienergy.com/preview?DocumentId=8DBD000164\u0026languageCode=en\u0026Preview=true"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
}
]
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g.\"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. For more details check the NVD link.",
"title": "Vulnerability Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
"references": [
{
"category": "external",
"summary": "web.nvd.nist.gov",
"url": "http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-4450"
},
{
"category": "external",
"summary": "www.first.org",
"url": "https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
}
],
"remediations": [
{
"category": "mitigation",
"details": "Hitachi Energy has released the following mitigations/fixes:",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "vendor_fix",
"details": "AFS650: Update to AFS 650 firmware version 9.1.10",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "AFS660-C, AFS665-B, AFS670-V2: Update to AFS 66x firmware version 7.1.08",
"product_ids": [
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004"
]
},
{
"category": "vendor_fix",
"details": "AFS670/675/677, AFR677: Update to AFS/AFR 67x firmware version 9.1.10",
"product_ids": [
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "In addition, recommended security practices and firewall configurations can help protect a process control network from attacks that originate from outside the network. Such practices include that process control systems are physically protected from direct access by unauthorized personnel, have no direct connections to the Internet, and are separated from other networks by means of a firewall system that has a minimal number of ports exposed, and others that have to be evaluated case by case. Process control systems should not be used for Internet surfing, instant messaging, or receiving e-mails. Portable computers and removable storage media should be carefully scanned for viruses before they are connected to a control system.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "For more information, see Hitachi Energy\u0027s Cybersecurity Advisory.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
],
"url": "https://publisher.hitachienergy.com/preview?DocumentId=8DBD000164\u0026languageCode=en\u0026Preview=true"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
}
]
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-203",
"name": "Observable Discrepancy"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE.",
"title": "Vulnerability Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
"references": [
{
"category": "external",
"summary": "web.nvd.nist.gov",
"url": "http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2022-4304"
},
{
"category": "external",
"summary": "www.first.org",
"url": "https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N"
}
],
"remediations": [
{
"category": "mitigation",
"details": "Hitachi Energy has released the following mitigations/fixes:",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "vendor_fix",
"details": "AFS650: Update to AFS 650 firmware version 9.1.10",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "AFS660-C, AFS665-B, AFS670-V2: Update to AFS 66x firmware version 7.1.08",
"product_ids": [
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004"
]
},
{
"category": "vendor_fix",
"details": "AFS670/675/677, AFR677: Update to AFS/AFR 67x firmware version 9.1.10",
"product_ids": [
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "In addition, recommended security practices and firewall configurations can help protect a process control network from attacks that originate from outside the network. Such practices include that process control systems are physically protected from direct access by unauthorized personnel, have no direct connections to the Internet, and are separated from other networks by means of a firewall system that has a minimal number of ports exposed, and others that have to be evaluated case by case. Process control systems should not be used for Internet surfing, instant messaging, or receiving e-mails. Portable computers and removable storage media should be carefully scanned for viruses before they are connected to a control system.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
},
{
"category": "mitigation",
"details": "For more information, see Hitachi Energy\u0027s Cybersecurity Advisory.",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
],
"url": "https://publisher.hitachienergy.com/preview?DocumentId=8DBD000164\u0026languageCode=en\u0026Preview=true"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008"
]
}
]
}
]
}
ICSA-25-044-09
Vulnerability from csaf_cisa - Published: 2025-02-11 00:00 - Updated: 2025-05-06 06:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
Siemens / SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)
|
6GK5762-1AJ00-6AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
Siemens / SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)
|
6GK5763-1AL00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
Siemens / SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)
|
6GK5763-1AL00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
Siemens / SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)
|
6GK5763-1AL00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
Siemens / SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)
|
6GK5766-1GE00-7DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
Siemens / SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)
|
6GK5766-1GE00-7DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
Siemens / SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)
|
6GK5766-1GE00-7DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
Siemens / SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)
|
6GK5766-1GE00-7TA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
Siemens / SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)
|
6GK5766-1GE00-7TC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
Siemens / SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)
|
6GK5766-1GE00-7TB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
Siemens / SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)
|
6GK5762-1AJ00-1AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
Siemens / SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)
|
6GK5762-1AJ00-2AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)
|
6GK5763-1AL00-3AA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
Siemens / SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)
|
6GK5763-1AL00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)
|
6GK5763-1AL00-3AB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
Siemens / SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)
|
6GK5763-1AL00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
Siemens / SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)
|
6GK5766-1GE00-3DA0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
Siemens / SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)
|
6GK5766-1GE00-3DC0
|
<V3.0.0 |
Vendor Fix
fix
|
|
SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
Siemens / SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)
|
6GK5766-1GE00-3DB0
|
<V3.0.0 |
Vendor Fix
fix
|
{
"document": {
"acknowledgments": [
{
"organization": "Siemens",
"summary": "reporting these vulnerabilities to CISA."
}
],
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "SCALANCE W-700 IEEE 802.11ax family devices are affected by multiple vulnerabilities.\n\nSiemens has released new versions for the affected products and recommends to update to the latest versions.",
"title": "Summary"
},
{
"category": "general",
"text": "As a general security measure, Siemens strongly recommends to protect network access to devices with appropriate mechanisms. In order to operate the devices in a protected IT environment, Siemens recommends to configure the environment according to Siemens\u0027 operational guidelines for Industrial Security (Download: \nhttps://www.siemens.com/cert/operational-guidelines-industrial-security), and to follow the recommendations in the product manuals.\nAdditional information on Industrial Security by Siemens can be found at: https://www.siemens.com/industrialsecurity",
"title": "General Recommendations"
},
{
"category": "general",
"text": "For further inquiries on security vulnerabilities in Siemens products and solutions, please contact the Siemens ProductCERT: https://www.siemens.com/cert/advisories",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "The use of Siemens Security Advisories is subject to the terms and conditions listed on: https://www.siemens.com/productcert/terms-of-use.",
"title": "Terms of Use"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Siemens ProductCERT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Chemical, Critical Manufacturing, Energy, Food and Agriculture, Water and Wastewater Systems",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Germany",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "SSA-769027: Multiple Vulnerabilities fixed in SCALANCE W700 IEEE 802.11ax devices before V3.0.0 - CSAF Version",
"url": "https://cert-portal.siemens.com/productcert/csaf/ssa-769027.json"
},
{
"category": "self",
"summary": "SSA-769027: Multiple Vulnerabilities fixed in SCALANCE W700 IEEE 802.11ax devices before V3.0.0 - HTML Version",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-769027.html"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-25-044-09 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2025/icsa-25-044-09.json"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-25-044-09 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-044-09"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Siemens SCALANCE W700 IEEE 802.11ax",
"tracking": {
"current_release_date": "2025-05-06T06:00:00.000000Z",
"generator": {
"engine": {
"name": "CISA CSAF Generator",
"version": "1.0.0"
}
},
"id": "ICSA-25-044-09",
"initial_release_date": "2025-02-11T00:00:00.000000Z",
"revision_history": [
{
"date": "2025-02-11T00:00:00.000000Z",
"legacy_version": "1.0",
"number": "1",
"summary": "Publication Date"
},
{
"date": "2025-05-06T06:00:00.000000Z",
"legacy_version": "Revision",
"number": "2",
"summary": "Revision - Fixing typos"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)",
"product_id": "CSAFPID-0001",
"product_identification_helper": {
"model_numbers": [
"6GK5762-1AJ00-6AA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAB762-1 (6GK5762-1AJ00-6AA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)",
"product_id": "CSAFPID-0002",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-7DA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM763-1 (6GK5763-1AL00-7DA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)",
"product_id": "CSAFPID-0003",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-7DC0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM763-1 (ME) (6GK5763-1AL00-7DC0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)",
"product_id": "CSAFPID-0004",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-7DB0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM763-1 (US) (6GK5763-1AL00-7DB0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)",
"product_id": "CSAFPID-0005",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-7DA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM766-1 (6GK5766-1GE00-7DA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)",
"product_id": "CSAFPID-0006",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-7DC0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM766-1 (ME) (6GK5766-1GE00-7DC0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)",
"product_id": "CSAFPID-0007",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-7DB0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM766-1 (US) (6GK5766-1GE00-7DB0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)",
"product_id": "CSAFPID-0008",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-7TA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM766-1 EEC (6GK5766-1GE00-7TA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)",
"product_id": "CSAFPID-0009",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-7TC0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM766-1 EEC (ME) (6GK5766-1GE00-7TC0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)",
"product_id": "CSAFPID-0010",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-7TB0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WAM766-1 EEC (US) (6GK5766-1GE00-7TB0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)",
"product_id": "CSAFPID-0011",
"product_identification_helper": {
"model_numbers": [
"6GK5762-1AJ00-1AA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUB762-1 (6GK5762-1AJ00-1AA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)",
"product_id": "CSAFPID-0012",
"product_identification_helper": {
"model_numbers": [
"6GK5762-1AJ00-2AA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUB762-1 iFeatures (6GK5762-1AJ00-2AA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)",
"product_id": "CSAFPID-0013",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-3AA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM763-1 (6GK5763-1AL00-3AA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)",
"product_id": "CSAFPID-0014",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-3DA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM763-1 (6GK5763-1AL00-3DA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)",
"product_id": "CSAFPID-0015",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-3AB0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM763-1 (US) (6GK5763-1AL00-3AB0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)",
"product_id": "CSAFPID-0016",
"product_identification_helper": {
"model_numbers": [
"6GK5763-1AL00-3DB0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM763-1 (US) (6GK5763-1AL00-3DB0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)",
"product_id": "CSAFPID-0017",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-3DA0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM766-1 (6GK5766-1GE00-3DA0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)",
"product_id": "CSAFPID-0018",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-3DC0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM766-1 (ME) (6GK5766-1GE00-3DC0)"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003cV3.0.0",
"product": {
"name": "SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)",
"product_id": "CSAFPID-0019",
"product_identification_helper": {
"model_numbers": [
"6GK5766-1GE00-3DB0"
]
}
}
}
],
"category": "product_name",
"name": "SCALANCE WUM766-1 (USA) (6GK5766-1GE00-3DB0)"
}
],
"category": "vendor",
"name": "Siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-2588",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "Zhenpeng Lin discovered that the network packet scheduler implementation in the Linux kernel did not properly remove all references to a route filter before freeing it in some situations. A local attacker could use this to cause a denial of service (system crash) or execute arbitrary code.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-2588"
},
{
"cve": "CVE-2022-2663",
"cwe": {
"id": "CWE-923",
"name": "Improper Restriction of Communication Channel to Intended Endpoints"
},
"notes": [
{
"category": "summary",
"text": "An issue was found in the Linux kernel in nf_conntrack_irc where the message handling can be confused and incorrectly matches the message. A firewall may be able to be bypassed when users are using unencrypted IRC with nf_conntrack_irc configured.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-2663"
},
{
"cve": "CVE-2022-3524",
"cwe": {
"id": "CWE-404",
"name": "Improper Resource Shutdown or Release"
},
"notes": [
{
"category": "summary",
"text": "A vulnerability was found in Linux Kernel. It has been declared as problematic. Affected by this vulnerability is the function ipv6_renew_options of the component IPv6 Handler. The manipulation leads to memory leak. The attack can be launched remotely. It is recommended to apply a patch to fix this issue. The identifier VDB-211021 was assigned to this vulnerability.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-3524"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "summary",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the \"name\" (e.g. \"CERTIFICATE\"), any header data and the payload data. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-39188",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in include/asm-generic/tlb.h in the Linux kernel before 5.19. Because of a race condition (unmap_mapping_range versus munmap), a device driver can free a page while it still has stale TLB entries. This only occurs in situations with VM_PFNMAP VMAs.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-39188"
},
{
"cve": "CVE-2022-39842",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in the Linux kernel before 5.19. In pxa3xx_gcu_write in drivers/video/fbdev/pxa3xx-gcu.c, the count parameter has a type conflict of size_t versus int, causing an integer overflow and bypassing the size check. After that, because it is used as the third argument to copy_from_user(), a heap overflow may occur. NOTE: the original discoverer disputes that the overflow can actually happen.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-39842"
},
{
"cve": "CVE-2022-40303",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. When parsing a multi-gigabyte XML document with the XML_PARSE_HUGE parser option enabled, several integer counters can overflow. This results in an attempt to access an array at a negative 2GB offset, typically leading to a segmentation fault.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.3. Certain invalid XML entity definitions can corrupt a hash table key, potentially leading to subsequent logic errors. In one case, a double-free can be provoked.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-43750",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "drivers/usb/mon/mon_bin.c in usbmon in the Linux kernel before 5.19.15 and 6.x before 6.0.1 allows a user-space client to corrupt the monitor\u0027s internal memory.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-43750"
},
{
"cve": "CVE-2022-47069",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "p7zip 16.02 was discovered to contain a heap-buffer-overflow vulnerability via the function NArchive::NZip::CInArchive::FindCd(bool) at CPP/7zip/Archive/Zip/ZipIn.cpp.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-47069"
},
{
"cve": "CVE-2022-47929",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "In the Linux kernel before 6.1.6, a NULL pointer dereference bug in the traffic control subsystem allows an unprivileged user to trigger a denial of service (system crash) via a crafted traffic control configuration that is set up with \"tc qdisc\" and \"tc class\" commands. This affects qdisc_graft in net/sched/sch_api.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2022-47929"
},
{
"cve": "CVE-2023-0045",
"cwe": {
"id": "CWE-610",
"name": "Externally Controlled Reference to a Resource in Another Sphere"
},
"notes": [
{
"category": "summary",
"text": "The current implementation of the prctl syscall does not issue an IBPB immediately during the syscall. The ib_prctl_set \u00a0function updates the Thread Information Flags (TIFs) for the task and updates the SPEC_CTRL MSR on the function __speculation_ctrl_update, but the IBPB is only issued on the next schedule, when the TIF bits are checked. This leaves the victim vulnerable to values already injected on the BTB, prior to the prctl syscall. \u00a0The patch that added the support for the conditional mitigation via prctl (ib_prctl_set) dates back to the kernel 4.9.176.\n\nWe recommend upgrading past commit\u00a0a664ec9158eeddd75121d39c9a0758016097fa96",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0045"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0215"
},
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "summary",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0286"
},
{
"cve": "CVE-2023-0464",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "A security vulnerability has been identified in all supported versions of OpenSSL related to the verification of X.509 certificate chains that include policy constraints. Attackers may be able to exploit this vulnerability by creating a malicious certificate chain that triggers exponential use of computational resources, leading to a denial-of-service (DoS) attack on affected systems.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing the `-policy` argument to the command line utilities or by calling the `X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0464"
},
{
"cve": "CVE-2023-0465",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "Applications that use a non-default option when verifying certificates may be\r\nvulnerable to an attack from a malicious CA to circumvent certain checks.\r\n\r\nInvalid certificate policies in leaf certificates are silently ignored by\r\nOpenSSL and other certificate policy checks are skipped for that certificate.\r\nA malicious CA could use this to deliberately assert invalid certificate policies\r\nin order to circumvent policy checking on the certificate altogether.\r\n\r\nPolicy processing is disabled by default but can be enabled by passing\r\nthe `-policy` argument to the command line utilities or by calling the\r\n`X509_VERIFY_PARAM_set1_policies()` function.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0465"
},
{
"cve": "CVE-2023-0466",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"notes": [
{
"category": "summary",
"text": "The function X509_VERIFY_PARAM_add0_policy() is documented to\r\nimplicitly enable the certificate policy check when doing certificate\r\nverification. However the implementation of the function does not\r\nenable the check which allows certificates with invalid or incorrect\r\npolicies to pass the certificate verification.\r\n\r\nAs suddenly enabling the policy check could break existing deployments it was\r\ndecided to keep the existing behavior of the X509_VERIFY_PARAM_add0_policy()\r\nfunction.\r\n\r\nInstead the applications that require OpenSSL to perform certificate\r\npolicy check need to use X509_VERIFY_PARAM_set1_policies() or explicitly\r\nenable the policy check by calling X509_VERIFY_PARAM_set_flags() with\r\nthe X509_V_FLAG_POLICY_CHECK flag argument.\r\n\r\nCertificate policy checks are disabled by default in OpenSSL and are not\r\ncommonly used by applications.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-0590",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A use-after-free flaw was found in qdisc_graft in net/sched/sch_api.c in the Linux Kernel due to a race problem. This flaw leads to a denial of service issue. If patch ebda44da44f6 (\"net: sched: fix race condition in qdisc_graft()\") not applied yet, then kernel could be affected.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-0590"
},
{
"cve": "CVE-2023-1073",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "A memory corruption flaw was found in the Linux kernel\u2019s human interface device (HID) subsystem in how a user inserts a malicious USB device. This flaw allows a local user to crash or potentially escalate their privileges on the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-1073"
},
{
"cve": "CVE-2023-1074",
"cwe": {
"id": "CWE-401",
"name": "Missing Release of Memory after Effective Lifetime"
},
"notes": [
{
"category": "summary",
"text": "A memory leak flaw was found in the Linux kernel\u0027s Stream Control Transmission Protocol. This issue may occur when a user starts a malicious networking service and someone connects to this service. This could allow a local user to starve resources, causing a denial of service.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-1074"
},
{
"cve": "CVE-2023-1118",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A flaw use after free in the Linux kernel integrated infrared receiver/transceiver driver was found in the way user detaching rc device. A local user could use this flaw to crash the system or potentially escalate their privileges on the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-1118"
},
{
"cve": "CVE-2023-1206",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "A hash collision flaw was found in the IPv6 connection lookup table in the Linux kernel\u2019s IPv6 functionality when a user makes a new kind of SYN flood attack. A user located in the local network or with a high bandwidth connection can increase the CPU usage of the server that accepts IPV6 connections up to 95%.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-1206"
},
{
"cve": "CVE-2023-1380",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "A slab-out-of-bound read problem was found in brcmf_get_assoc_ies in drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c in the Linux Kernel. This issue could occur when assoc_info-\u003ereq_len data is bigger than the size of the buffer, defined as WL_EXTRA_BUF_MAX, leading to a denial of service.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-1380"
},
{
"cve": "CVE-2023-1670",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A flaw use after free in the Linux kernel Xircom 16-bit PCMCIA (PC-card) Ethernet driver was found.A local user could use this flaw to crash the system or potentially escalate their privileges on the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-1670"
},
{
"cve": "CVE-2023-2194",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "An out-of-bounds write vulnerability was found in the Linux kernel\u0027s SLIMpro I2C device driver. The userspace \"data-\u003eblock[0]\" variable was not capped to a number between 0-255 and was used as the size of a memcpy, possibly writing beyond the end of dma_buffer. This flaw could allow a local privileged user to crash the system or potentially achieve code execution.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-2194"
},
{
"cve": "CVE-2023-3446",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "summary",
"text": "Checking excessively long DH keys or parameters may be very slow. Applications that use the functions DH_check(), DH_check_ex() or EVP_PKEY_param_check() to check a DH key or DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The function DH_check() performs various checks on DH parameters. One of those checks confirms that the modulus (\u0027p\u0027 parameter) is not too large. Trying to use a very large modulus is slow and OpenSSL will not normally use a modulus which is over 10,000 bits in length. However the DH_check() function checks numerous aspects of the key or parameters that have been supplied. Some of those checks use the supplied modulus value even if it has already been found to be too large. An application that calls DH_check() and supplies a key or parameters obtained from an untrusted source could be vulernable to a Denial of Service attack. The function DH_check() is itself called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_ex() and EVP_PKEY_param_check(). Also vulnerable are the OpenSSL dhparam and pkeyparam command line applications when using the \u0027-check\u0027 option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-3446"
},
{
"cve": "CVE-2023-3611",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "An out-of-bounds write vulnerability in the Linux kernel\u0027s net/sched: sch_qfq component can be exploited to achieve local privilege escalation.\r\n\r\nThe qfq_change_agg() function in net/sched/sch_qfq.c allows an out-of-bounds write because lmax is updated according to packet sizes without bounds checks.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-3611"
},
{
"cve": "CVE-2023-4623",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A use-after-free vulnerability in the Linux kernel\u0027s net/sched: sch_hfsc (HFSC qdisc traffic control) component can be exploited to achieve local privilege escalation.\n\nIf a class with a link-sharing curve (i.e. with the HFSC_FSC flag set) has a parent without a link-sharing curve, then init_vf() will call vttree_insert() on the parent, but vttree_remove() will be skipped in update_vf(). This leaves a dangling pointer that can cause a use-after-free.\n\nWe recommend upgrading past commit b3d26c5702c7d6c45456326e56d2ccf3f103e60f.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-4623"
},
{
"cve": "CVE-2023-4921",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "A use-after-free vulnerability in the Linux kernel\u0027s net/sched: sch_qfq component can be exploited to achieve local privilege escalation.\n\nWhen the plug qdisc is used as a class of the qfq qdisc, sending network packets triggers use-after-free in qfq_dequeue() due to the incorrect .peek handler of sch_plug and lack of error checking in agg_dequeue().\n\nWe recommend upgrading past commit 8fc134fee27f2263988ae38920bc03da416b03d8.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-4921"
},
{
"cve": "CVE-2023-5363",
"cwe": {
"id": "CWE-684",
"name": "Incorrect Provision of Specified Functionality"
},
"notes": [
{
"category": "summary",
"text": "A bug has been identified in the processing of key and initialisation vector (IV) lengths. This can lead to potential truncation or overruns during the initialisation of some symmetric ciphers. A truncation in the IV can result in non-uniqueness, which could result in loss of confidentiality for some cipher modes.\r\n\r\nWhen calling EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2() or EVP_CipherInit_ex2() the provided OSSL_PARAM array is processed after the key and IV have been established. Any alterations to the key length, via the \"keylen\" parameter or the IV length, via the \"ivlen\" parameter, within the OSSL_PARAM array will not take effect as intended, potentially causing truncation or overreading of these values. The following ciphers and cipher modes are impacted: RC2, RC4, RC5, CCM, GCM and OCB.\r\n\r\nFor the CCM, GCM and OCB cipher modes, truncation of the IV can result in loss of confidentiality. For example, when following NIST\u0027s SP 800-38D section 8.2.1 guidance for constructing a deterministic IV for AES in GCM mode, truncation of the counter portion could lead to IV reuse.\r\n\r\nBoth truncations and overruns of the key and overruns of the IV will produce incorrect results and could, in some cases, trigger a memory exception. However, these issues are not currently assessed as security critical.\r\n\r\nChanging the key and/or IV lengths is not considered to be a common operation and the vulnerable API was recently introduced. Furthermore it is likely that application developers will have spotted this problem during testing since decryption would fail unless both peers in the communication were similarly vulnerable. For these reasons we expect the probability of an application being vulnerable to this to be quite low. However if an application is vulnerable then this issue is considered very serious. For these reasons we have assessed this issue as Moderate severity overall.\r\n\r\nThe OpenSSL SSL/TLS implementation is not affected by this issue.\r\n\r\nThe OpenSSL 3.0 and 3.1 FIPS providers are not affected by this because the issue lies outside of the FIPS provider boundary.\r\n\r\nOpenSSL 3.1 and 3.0 are vulnerable to this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-5363"
},
{
"cve": "CVE-2023-5678",
"cwe": {
"id": "CWE-754",
"name": "Improper Check for Unusual or Exceptional Conditions"
},
"notes": [
{
"category": "summary",
"text": "Generating excessively long X9.42 DH keys or checking excessively long X9.42 DH keys or parameters may be very slow. Applications that use the functions DH_generate_key() to generate an X9.42 DH key may experience long delays. Likewise, applications that use DH_check_pub_key(), DH_check_pub_key_ex() or EVP_PKEY_public_check() to check an X9.42 DH key or X9.42 DH parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. While DH_check() performs all the necessary checks (as of CVE-2023-3817), DH_check_pub_key() doesn\u0027t make any of these checks, and is therefore vulnerable for excessively large P and Q parameters. Likewise, while DH_generate_key() performs a check for an excessively large P, it doesn\u0027t check for an excessively large Q. An application that calls DH_generate_key() or DH_check_pub_key() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. DH_generate_key() and DH_check_pub_key() are also called by a number of other OpenSSL functions. An application calling any of those other functions may similarly be affected. The other functions affected by this are DH_check_pub_key_ex(), EVP_PKEY_public_check(), and EVP_PKEY_generate(). Also vulnerable are the OpenSSL pkey command line application when using the \"-pubcheck\" option, as well as the OpenSSL genpkey command line application. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-5678"
},
{
"cve": "CVE-2023-5717",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "A heap out-of-bounds write vulnerability in the Linux kernel\u0027s Linux Kernel Performance Events (perf) component can be exploited to achieve local privilege escalation.\r\n\r\nIf perf_read_group() is called while an event\u0027s sibling_list is smaller than its child\u0027s sibling_list, it can increment or write to memory locations outside of the allocated buffer.\r\n\r\nWe recommend upgrading past commit 32671e3799ca2e4590773fd0e63aaa4229e50c06.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-5717"
},
{
"cve": "CVE-2023-6129",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "The POLY1305 MAC (message authentication code) implementation\r\ncontains a bug that might corrupt the internal state of applications running\r\non PowerPC CPU based platforms if the CPU provides vector instructions.\r\n\r\nIf an attacker can influence whether the POLY1305 MAC\r\nalgorithm is used, the application state might be corrupted with various\r\napplication dependent consequences.\r\n\r\nThe POLY1305 MAC (message authentication code) implementation in OpenSSL for\r\nPowerPC CPUs restores the contents of vector registers in a different order\r\nthan they are saved. Thus the contents of some of these vector registers\r\nare corrupted when returning to the caller. The vulnerable code is used only\r\non newer PowerPC processors supporting the PowerISA 2.07 instructions.\r\n\r\nThe consequences of this kind of internal application state corruption can\r\nbe various - from no consequences, if the calling application does not\r\ndepend on the contents of non-volatile XMM registers at all, to the worst\r\nconsequences, where the attacker could get complete control of the application\r\nprocess. However unless the compiler uses the vector registers for storing\r\npointers, the most likely consequence, if any, would be an incorrect result\r\nof some application dependent calculations or a crash leading to a denial of\r\nservice.\r\n\r\nThe POLY1305 MAC algorithm is most frequently used as part of the\r\nCHACHA20-POLY1305 AEAD (authenticated encryption with associated data)\r\nalgorithm. The most common usage of this AEAD cipher is with TLS protocol\r\nversions 1.2 and 1.3. If this cipher is enabled on the server a malicious\r\nclient can influence whether this AEAD cipher is used. This implies that\r\nTLS server applications using OpenSSL can be potentially impacted. However\r\nwe are currently not aware of any concrete application that would be affected\r\nby this issue therefore we consider this a Low severity security issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-6129"
},
{
"cve": "CVE-2023-6237",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "Checking excessively long invalid RSA public keys may take a long time. Applications that use the function EVP_PKEY_public_check() to check RSA public keys may experience long delays. Where the key that is being checked has been obtained from an untrusted source this may lead to a Denial of Service. When function EVP_PKEY_public_check() is called on RSA public keys, a computation is done to confirm that the RSA modulus, n, is composite. For valid RSA keys, n is a product of two or more large primes and this computation completes quickly. However, if n is an overly large prime, then this computation would take a long time. An application that calls EVP_PKEY_public_check() and supplies an RSA key obtained from an untrusted source could be vulnerable to a Denial of Service attack. The function EVP_PKEY_public_check() is not called from other OpenSSL functions however it is called from the OpenSSL pkey command line application. For that reason that application is also vulnerable if used with the \u0027-pubin\u0027 and \u0027-check\u0027 options on untrusted data. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-6237"
},
{
"cve": "CVE-2023-7250",
"cwe": {
"id": "CWE-183",
"name": "Permissive List of Allowed Inputs"
},
"notes": [
{
"category": "summary",
"text": "A flaw was found in iperf, a utility for testing network performance using TCP, UDP, and SCTP. A malicious or malfunctioning client can send less than the expected amount of data to the iperf server, which can cause the server to hang indefinitely waiting for the remainder or until the connection gets closed. This will prevent other connections to the server, leading to a denial of service.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-7250"
},
{
"cve": "CVE-2023-23454",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "summary",
"text": "cbq_classify in net/sched/sch_cbq.c in the Linux kernel through 6.1.4 allows attackers to cause a denial of service (slab-out-of-bounds read) because of type confusion (non-negative numbers can sometimes indicate a TC_ACT_SHOT condition rather than valid classification results).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-23454"
},
{
"cve": "CVE-2023-23455",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "summary",
"text": "atm_tc_enqueue in net/sched/sch_atm.c in the Linux kernel through 6.1.4 allows attackers to cause a denial of service because of type confusion (non-negative numbers can sometimes indicate a TC_ACT_SHOT condition rather than valid classification results).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-23455"
},
{
"cve": "CVE-2023-23559",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "In rndis_query_oid in drivers/net/wireless/rndis_wlan.c in the Linux kernel through 6.1.5, there is an integer overflow in an addition.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-23559"
},
{
"cve": "CVE-2023-26545",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "In the Linux kernel before 6.1.13, there is a double free in net/mpls/af_mpls.c upon an allocation failure (for registering the sysctl table under a new location) during the renaming of a device.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.7,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-26545"
},
{
"cve": "CVE-2023-28484",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "In libxml2 before 2.10.4, parsing of certain invalid XSD schemas can lead to a NULL pointer dereference and subsequently a segfault. This occurs in xmlSchemaFixupComplexType in xmlschemas.c.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-28484"
},
{
"cve": "CVE-2023-28578",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Memory corruption in Core Services while executing the command for removing a single event listener.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-28578"
},
{
"cve": "CVE-2023-29469",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in libxml2 before 2.10.4. When hashing empty dict strings in a crafted XML document, xmlDictComputeFastKey in dict.c can produce non-deterministic values, leading to various logic and memory errors, such as a double free. This behavior occurs because there is an attempt to use the first byte of an empty string, and any value is possible (not solely the \u0027\\0\u0027 value).",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-29469"
},
{
"cve": "CVE-2023-31085",
"cwe": {
"id": "CWE-369",
"name": "Divide By Zero"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in drivers/mtd/ubi/cdev.c in the Linux kernel 6.2. There is a divide-by-zero error in do_div(sz,mtd-\u003eerasesize), used indirectly by ctrl_cdev_ioctl, when mtd-\u003eerasesize is 0.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-31085"
},
{
"cve": "CVE-2023-31315",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Improper validation in a model specific register (MSR) could allow a malicious program with ring0 access to modify SMM configuration while SMI lock is enabled, potentially leading to arbitrary code execution.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-31315"
},
{
"cve": "CVE-2023-35001",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "Linux Kernel nftables Out-Of-Bounds Read/Write Vulnerability; nft_byteorder poorly handled vm register contents when CAP_NET_ADMIN is in any user or network namespace",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-35001"
},
{
"cve": "CVE-2023-39192",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "A flaw was found in the Netfilter subsystem in the Linux kernel. The xt_u32 module did not validate the fields in the xt_u32 structure. This flaw allows a local privileged attacker to trigger an out-of-bounds read by setting the size fields with a value beyond the array boundaries, leading to a crash or information disclosure.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-39192"
},
{
"cve": "CVE-2023-39193",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "summary",
"text": "A flaw was found in the Netfilter subsystem in the Linux kernel. The sctp_mt_check did not validate the flag_count field. This flaw allows a local privileged (CAP_NET_ADMIN) attacker to trigger an out-of-bounds read, leading to a crash or information disclosure.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-39193"
},
{
"cve": "CVE-2023-42754",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "A NULL pointer dereference flaw was found in the Linux kernel ipv4 stack. The socket buffer (skb) was assumed to be associated with a device before calling __ip_options_compile, which is not always the case if the skb is re-routed by ipvs. This issue may allow a local user with CAP_NET_ADMIN privileges to crash the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-42754"
},
{
"cve": "CVE-2023-43522",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "Transient DOS while key unwrapping process, when the given encrypted key is empty or NULL.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-43522"
},
{
"cve": "CVE-2023-44320",
"cwe": {
"id": "CWE-425",
"name": "Direct Request (\u0027Forced Browsing\u0027)"
},
"notes": [
{
"category": "summary",
"text": "Affected devices do not properly validate the authentication when performing certain modifications in the web interface allowing an authenticated attacker to influence the user interface configured by an administrator.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-44320"
},
{
"cve": "CVE-2023-44322",
"cwe": {
"id": "CWE-252",
"name": "Unchecked Return Value"
},
"notes": [
{
"category": "summary",
"text": "Affected devices can be configured to send emails when certain events occur on the device. When presented with an invalid response from the SMTP server, the device triggers an error that disrupts email sending. An attacker with access to the network can use this to do disable notification of users when certain events occur.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-44322"
},
{
"cve": "CVE-2023-45853",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "summary",
"text": "MiniZip in zlib through 1.3 has an integer overflow and resultant heap-based buffer overflow in zipOpenNewFileInZip4_64 via a long filename, comment, or extra field. NOTE: MiniZip is not a supported part of the zlib product.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-45853"
},
{
"cve": "CVE-2023-45863",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "An issue was discovered in lib/kobject.c in the Linux kernel before 6.2.3. With root access, an attacker can trigger a race condition that results in a fill_kobj_path out-of-bounds write.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-45863"
},
{
"cve": "CVE-2023-48795",
"cwe": {
"id": "CWE-222",
"name": "Truncation of Security-relevant Information"
},
"notes": [
{
"category": "summary",
"text": "The SSH transport protocol with certain OpenSSH extensions, found in OpenSSH before 9.6 and other products, allows remote attackers to bypass integrity checks such that some packets are omitted (from the extension negotiation message), and a client and server may consequently end up with a connection for which some security features have been downgraded or disabled, aka a Terrapin attack. This occurs because the SSH Binary Packet Protocol (BPP), implemented by these extensions, mishandles the handshake phase and mishandles use of sequence numbers. For example, there is an effective attack against SSH\u0027s use of ChaCha20-Poly1305 (and CBC with Encrypt-then-MAC). The bypass occurs in chacha20-poly1305@openssh.com and (if CBC is used) the -etm@openssh.com MAC algorithms. This also affects Maverick Synergy Java SSH API before 3.1.0-SNAPSHOT, Dropbear through 2022.83, Ssh before 5.1.1 in Erlang/OTP, PuTTY before 0.80, AsyncSSH before 2.14.2, golang.org/x/crypto before 0.17.0, libssh before 0.10.6, libssh2 through 1.11.0, Thorn Tech SFTP Gateway before 3.4.6, Tera Term before 5.1, Paramiko before 3.4.0, jsch before 0.2.15, SFTPGo before 2.5.6, Netgate pfSense Plus through 23.09.1, Netgate pfSense CE through 2.7.2, HPN-SSH through 18.2.0, ProFTPD before 1.3.8b (and before1.3.9rc2), ORYX CycloneSSH before 2.3.4, NetSarang XShell 7 before Build 0144, CrushFTP before 10.6.0, ConnectBot SSH library before 2.2.22, Apache MINA sshd through 2.11.0, sshj through 0.37.0, TinySSH through 20230101, trilead-ssh2 6401, the net-ssh gem 7.2.0 for Ruby, the mscdex ssh2 module before 1.15.0 for Node.js, the thrussh library before 0.35.1 for Rust, and the Russh crate before 0.40.2 for Rust; and there could be effects on Bitvise SSH through 9.31.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-48795"
},
{
"cve": "CVE-2023-51384",
"cwe": {
"id": "CWE-304",
"name": "Missing Critical Step in Authentication"
},
"notes": [
{
"category": "summary",
"text": "In ssh-agent in OpenSSH before 9.6, certain destination constraints can be incompletely applied. When destination constraints are specified during addition of PKCS#11-hosted private keys, these constraints are only applied to the first key, even if a PKCS#11 token returns multiple keys.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"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": "summary",
"text": "In ssh in OpenSSH before 9.6, OS command injection might occur if a user name or host name has shell metacharacters, and this name is referenced by an expansion token in certain situations. For example, an untrusted Git repository can have a submodule with shell metacharacters in a user name or host name.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2023-51385"
},
{
"cve": "CVE-2024-0727",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "summary",
"text": "Processing a maliciously formatted PKCS12 file may lead OpenSSL to crash leading to a potential Denial of Service attack",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-0727"
},
{
"cve": "CVE-2024-2511",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "Some non-default TLS server configurations can cause unbounded memory growth when processing TLSv1.3 sessions. An attacker may exploit certain server configurations to trigger unbounded memory growth that would lead to a Denial of Service This problem can occur in TLSv1.3 if the non-default SSL_OP_NO_TICKET option is being used (but not if early_data support is also configured and the default anti-replay protection is in use). In this case, under certain conditions, the session cache can get into an incorrect state and it will fail to flush properly as it fills. The session cache will continue to grow in an unbounded manner. A malicious client could deliberately create the scenario for this failure to force a Denial of Service. It may also happen by accident in normal operation. This issue only affects TLS servers supporting TLSv1.3. It does not affect TLS clients. The FIPS modules in 3.2, 3.1 and 3.0 are not affected by this issue. OpenSSL 1.0.2 is also not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-2511"
},
{
"cve": "CVE-2024-4603",
"cwe": {
"id": "CWE-834",
"name": "Excessive Iteration"
},
"notes": [
{
"category": "summary",
"text": "Checking excessively long DSA keys or parameters may be very slow. Applications that use the functions EVP_PKEY_param_check() or EVP_PKEY_public_check() to check a DSA public key or DSA parameters may experience long delays. Where the key or parameters that are being checked have been obtained from an untrusted source this may lead to a Denial of Service. The functions EVP_PKEY_param_check() or EVP_PKEY_public_check() perform various checks on DSA parameters. Some of those computations take a long time if the modulus (`p` parameter) is too large. Trying to use a very large modulus is slow and OpenSSL will not allow using public keys with a modulus which is over 10,000 bits in length for signature verification. However the key and parameter check functions do not limit the modulus size when performing the checks. An application that calls EVP_PKEY_param_check() or EVP_PKEY_public_check() and supplies a key or parameters obtained from an untrusted source could be vulnerable to a Denial of Service attack. These functions are not called by OpenSSL itself on untrusted DSA keys so only applications that directly call these functions may be vulnerable. Also vulnerable are the OpenSSL pkey and pkeyparam command line applications when using the `-check` option. The OpenSSL SSL/TLS implementation is not affected by this issue. The OpenSSL 3.0 and 3.1 FIPS providers are affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-4603"
},
{
"cve": "CVE-2024-4741",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "summary",
"text": "Calling the OpenSSL API function SSL_free_buffers may cause memory to be accessed that was previously freed in some situations",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-4741"
},
{
"cve": "CVE-2024-5535",
"cwe": {
"id": "CWE-200",
"name": "Exposure of Sensitive Information to an Unauthorized Actor"
},
"notes": [
{
"category": "summary",
"text": "Calling the OpenSSL API function SSL_select_next_proto with an empty supported client protocols buffer may cause a crash or memory contents to be sent to the peer. A buffer overread can have a range of potential consequences such as unexpected application beahviour or a crash. In particular this issue could result in up to 255 bytes of arbitrary private data from memory being sent to the peer leading to a loss of confidentiality. However, only applications that directly call the SSL_select_next_proto function with a 0 length list of supported client protocols are affected by this issue. This would normally never be a valid scenario and is typically not under attacker control but may occur by accident in the case of a configuration or programming error in the calling application. The OpenSSL API function SSL_select_next_proto is typically used by TLS applications that support ALPN (Application Layer Protocol Negotiation) or NPN (Next Protocol Negotiation). NPN is older, was never standardised and is deprecated in favour of ALPN. We believe that ALPN is significantly more widely deployed than NPN. The SSL_select_next_proto function accepts a list of protocols from the server and a list of protocols from the client and returns the first protocol that appears in the server list that also appears in the client list. In the case of no overlap between the two lists it returns the first item in the client list. In either case it will signal whether an overlap between the two lists was found. In the case where SSL_select_next_proto is called with a zero length client list it fails to notice this condition and returns the memory immediately following the client list pointer (and reports that there was no overlap in the lists). This function is typically called from a server side application callback for ALPN or a client side application callback for NPN. In the case of ALPN the list of protocols supplied by the client is guaranteed by libssl to never be zero in length. The list of server protocols comes from the application and should never normally be expected to be of zero length. In this case if the SSL_select_next_proto function has been called as expected (with the list supplied by the client passed in the client/client_len parameters), then the application will not be vulnerable to this issue. If the application has accidentally been configured with a zero length server list, and has accidentally passed that zero length server list in the client/client_len parameters, and has additionally failed to correctly handle a \"no overlap\" response (which would normally result in a handshake failure in ALPN) then it will be vulnerable to this problem. In the case of NPN, the protocol permits the client to opportunistically select a protocol when there is no overlap. OpenSSL returns the first client protocol in the no overlap case in support of this. The list of client protocols comes from the application and should never normally be expected to be of zero length. However if the SSL_select_next_proto function is accidentally called with a client_len of 0 then an invalid memory pointer will be returned instead. If the application uses this output as the opportunistic protocol then the loss of confidentiality will occur. This issue has been assessed as Low severity because applications are most likely to be vulnerable if they are using NPN instead of ALPN - but NPN is not widely used. It also requires an application configuration or programming error. Finally, this issue would not typically be under attacker control making active exploitation unlikely. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue. Due to the low severity of this issue we are not issuing new releases of OpenSSL at this time. The fix will be included in the next releases when they become available.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-5535"
},
{
"cve": "CVE-2024-6119",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "summary",
"text": "Applications performing certificate name checks (e.g., TLS clients checking server certificates) may attempt to read an invalid memory address resulting in abnormal termination of the application process. Impact summary: Abnormal termination of an application can a cause a denial of service. Applications performing certificate name checks (e.g., TLS clients checking server certificates) may attempt to read an invalid memory address when comparing the expected name with an `otherName` subject alternative name of an X.509 certificate. This may result in an exception that terminates the application program. Note that basic certificate chain validation (signatures, dates, ...) is not affected, the denial of service can occur only when the application also specifies an expected DNS name, Email address or IP address. TLS servers rarely solicit client certificates, and even when they do, they generally don\u0027t perform a name check against a reference identifier (expected identity), but rather extract the presented identity after checking the certificate chain. So TLS servers are generally not affected and the severity of the issue is Moderate. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-6119"
},
{
"cve": "CVE-2024-9143",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "summary",
"text": "Use of the low-level GF(2m) elliptic curve APIs with untrusted explicit values for the field polynomial can lead to out-of-bounds memory reads or writes. Impact summary: Out of bound memory writes can lead to an application crash or even a possibility of a remote code execution, however, in all the protocols involving Elliptic Curve Cryptography that we\u0027re aware of, either only \"named curves\" are supported, or, if explicit curve parameters are supported, they specify an X9.62 encoding of binary (GF(2m)) curves that can\u0027t represent problematic input values. Thus the likelihood of existence of a vulnerable application is low. In particular, the X9.62 encoding is used for ECC keys in X.509 certificates, so problematic inputs cannot occur in the context of processing X.509 certificates. Any problematic use-cases would have to be using an \"exotic\" curve encoding. The affected APIs include: EC_GROUP_new_curve_GF2m(), EC_GROUP_new_from_params(), and various supporting BN_GF2m_*() functions. Applications working with \"exotic\" explicit binary (GF(2m)) curve parameters, that make it possible to represent invalid field polynomials with a zero constant term, via the above or similar APIs, may terminate abruptly as a result of reading or writing outside of array bounds. Remote code execution cannot easily be ruled out. The FIPS modules in 3.3, 3.2, 3.1 and 3.0 are not affected by this issue.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-9143"
},
{
"cve": "CVE-2024-23814",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "summary",
"text": "The integrated ICMP service of the network stack of affected devices can be forced to exhaust its available memory resources when receiving specially crafted messages targeting IP fragment re-assembly. This could allow an unauthenticated remote attacker to cause a temporary denial of service condition of the ICMP service, other communication services are not affected. Affected devices will resume normal operation after the attack terminates.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-23814"
},
{
"cve": "CVE-2024-26306",
"cwe": {
"id": "CWE-203",
"name": "Observable Discrepancy"
},
"notes": [
{
"category": "summary",
"text": "iPerf3 before 3.17, when used with OpenSSL before 3.2.0 as a server with RSA authentication, allows a timing side channel in RSA decryption operations. This side channel could be sufficient for an attacker to recover credential plaintext. It requires the attacker to send a large number of messages for decryption, as described in \"Everlasting ROBOT: the Marvin Attack\" by Hubert Kario.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"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": "summary",
"text": "memory corruption when an invalid firehose patch command is invoked.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-33016"
},
{
"cve": "CVE-2024-50560",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Affected devices truncates usernames longer than 15 characters when accessed via SSH or Telnet. This could allow an attacker to compromise system integrity.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 3.1,
"baseSeverity": "LOW",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"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": "summary",
"text": "Affected devices do not properly sanitize the filenames before uploading. This could allow an authenticated remote attacker to compromise of integrity of the system.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"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": "summary",
"text": "Affected devices do not properly sanitize an input field. This could allow an authenticated remote attacker with administrative privileges to inject code or spawn a system root shell.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2024-50572"
},
{
"cve": "CVE-2025-24499",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "summary",
"text": "Affected devices do not properly validate input while loading the configuration files. This could allow an authenticated remote attacker to execute arbitrary shell commands on the device.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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/E:P/RL:O/RC:C",
"version": "3.1"
},
"products": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2025-24499"
},
{
"cve": "CVE-2025-24532",
"cwe": {
"id": "CWE-284",
"name": "Improper Access Control"
},
"notes": [
{
"category": "summary",
"text": "Affected devices with role `user` is affected by incorrect authorization in SNMPv3 View configuration. This could allow an attacker to change the View Type of SNMPv3 Views.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
},
"remediations": [
{
"category": "vendor_fix",
"details": "Update to V3.0.0 or later version",
"product_ids": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
],
"url": "https://support.industry.siemens.com/cs/ww/en/view/109977720/"
}
],
"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-0001",
"CSAFPID-0002",
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0005",
"CSAFPID-0006",
"CSAFPID-0007",
"CSAFPID-0008",
"CSAFPID-0009",
"CSAFPID-0010",
"CSAFPID-0011",
"CSAFPID-0012",
"CSAFPID-0013",
"CSAFPID-0014",
"CSAFPID-0015",
"CSAFPID-0016",
"CSAFPID-0017",
"CSAFPID-0018",
"CSAFPID-0019"
]
}
],
"title": "CVE-2025-24532"
}
]
}
ICSA-25-065-01
Vulnerability from csaf_cisa - Published: 2025-02-25 13:30 - Updated: 2025-02-25 13:30There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the x400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. 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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
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. This will most likely lead 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 attack. The TLS implementation in OpenSSL does not call this function but applications might call the function if there are additional security requirements imposed by standards such as FIPS 140-3.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
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. The result of the dereference is an application crash which could lead to a denial of service attack. 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 |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
A NULL pointer 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. The unavailability of an algorithm can be caused by using FIPS enabled configuration of providers or more commonly by not loading the legacy provider. PKCS7 data is processed by the SMIME library calls and also by the time stamp (TS) library calls. The TLS implementation in OpenSSL does not call these functions however third party applications would be affected if they call these functions to verify signatures on untrusted data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream, PEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
The function PEM_read_bio_ex() reads a PEM file from a BIO and parses and decodes the "name" (e.g. CERTIFICATE"), any header data and the payload data. If the function succeeds then the "name_out", "header" and "data" arguments are populated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results in 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most likely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around PEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including PEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext 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. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client and a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
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. The read buffer overrun might result in a crash which could lead to a denial of service attack. In theory it could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext) although we are not aware of any working exploit leading to memory contents disclosure as of the time of release of this advisory. In a TLS client, this can be triggered by connecting to a malicious server. In a TLS server, this can be triggered if the server requests client authentication and a malicious client connects.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 version 6.6.0
Hitachi Energy / PCU400
|
6.6.0 | ||
|
PCU400 version 9.4.2
Hitachi Energy / PCU400
|
9.4.2 | ||
|
PCULogger version 1.2.0
Hitachi Energy / PCULogger
|
1.2.0 |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
PCU400 versions 6.5 K and below
Hitachi Energy / PCU400
|
<=6.5_K |
Vendor Fix
|
|
|
PCU400 versions 9.4.1 and below
Hitachi Energy / PCU400
|
<=9.4.1 |
Vendor Fix
|
|
|
PCULogger versions 1.1.0 and below
Hitachi Energy / PCULogger
|
<=1.1.0 |
No Fix Planned
|
{
"document": {
"acknowledgments": [
{
"organization": "Hitachi Energy PSIRT",
"summary": "reporting these vulnerabilities to CISA."
},
{
"organization": "Dragos",
"summary": "responsibly reporting these vulnerabilities to Hitachi Energy."
}
],
"aggregate_severity": {
"namespace": "https://www.first.org/cvss/specification-document",
"text": "HIGH"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Disclosure is not limited",
"tlp": {
"label": "WHITE",
"url": "https://us-cert.cisa.gov/tlp/"
}
},
"lang": "en-US",
"notes": [
{
"category": "summary",
"text": "Hitachi Energy is aware of the multiple vulnerabilities related to various versions of OpenSSL library components used in PCU400 versions listed in this document below for IEC62351-3 secure for IEC104/DNP3\nor PCULogger tool. These vulnerabilities if exploited, can cause confidentiality and availability impacts.\nRefer to the Recommended Immediate Actions for information about the available mitigation/remediation\nstrategies.",
"title": "Summary"
},
{
"category": "legal_disclaimer",
"text": "The information in this document is subject to change without notice and should not be construed as a commitment by Hitachi Energy. Hitachi Energy provides no warranty, express or implied, including warran-ties of merchantability and fitness for a particular purpose, for the information contained in this document, and assumes no responsibility for any errors that may appear in this document. In no event shall Hitachi Energy or any of its suppliers be liable for direct, indirect, special, incidental or consequential damages of any nature or kind arising from the use of this document, or from the use of any hardware or software de-scribed in this document, even if Hitachi Energy or its suppliers have been advised of the possibility of such damages. This document and parts hereof must not be reproduced or copied without written permission from Hitachi Energy and the contents hereof must not be imparted to a third party nor used for any unauthorized purpose. All rights to registrations and trademarks reside with their respective owners.",
"title": "Notice"
},
{
"category": "general",
"text": "Recommended security practices and firewall configurations can help protect a process control network from attacks that originate from outside the network. Such practices include that process control systems are physically protected from direct access by unauthorized personnel, have no direct connections to the Internet, and are separated from other networks by means of a firewall system that has a minimal number of ports exposed, and others that have to be evaluated case by case. Process control systems should not be used for Internet surfing, instant messaging, or receiving e-mails. Portable computers and removable storage media should be carefully scanned for viruses before they are connected to a control system.",
"title": "General Mitigation Factors/Workarounds"
},
{
"category": "other",
"text": "For additional information and support please contact your product provider or Hitachi Energy service organization. For contact information, see https://www.hitachienergy.com/contact-us/ for Hitachi Energy contact-centers.",
"title": "Support"
},
{
"category": "legal_disclaimer",
"text": "All information products included in https://us-cert.cisa.gov/ics are provided \"as is\" for informational purposes only. The Department of Homeland Security (DHS) does not provide any warranties of any kind regarding any information contained within. DHS does not endorse any commercial product or service, referenced in this product or otherwise. Further dissemination of this product is governed by the Traffic Light Protocol (TLP) marking in the header. For more information about TLP, see https://us-cert.cisa.gov/tlp/.",
"title": "Legal Notice"
},
{
"category": "other",
"text": "This CISA CSAF advisory was converted from Hitachi Energy PSIRT\u0027s CSAF advisory.",
"title": "Advisory Conversion Disclaimer"
},
{
"category": "other",
"text": "Critical Manufacturing",
"title": "Critical infrastructure sectors"
},
{
"category": "other",
"text": "Worldwide",
"title": "Countries/areas deployed"
},
{
"category": "other",
"text": "Switzerland",
"title": "Company headquarters location"
},
{
"category": "general",
"text": "CISA recommends users take defensive measures to minimize the exploitation risk of this vulnerability.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Minimize network exposure for all control system devices and/or systems, and ensure they are not accessible from the internet.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Locate control system networks and remote devices behind firewalls and isolate them from business networks.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "When remote access is required, use more secure methods, such as Virtual Private Networks (VPNs), recognizing VPNs may have vulnerabilities and should be updated to the most recent version available. Also recognize VPN is only as secure as its connected devices.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA reminds organizations to perform proper impact analysis and risk assessment prior to deploying defensive measures.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA also provides a section for control systems security recommended practices on the ICS webpage on cisa.gov. Several CISA products detailing cyber defense best practices are available for reading and download, including Improving Industrial Control Systems Cybersecurity with Defense-in-Depth Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "CISA encourages organizations to implement recommended cybersecurity strategies for proactive defense of ICS assets. Additional mitigation guidance and recommended practices are publicly available on the ICS webpage at cisa.gov in the technical information paper, ICS-TIP-12-146-01B--Targeted Cyber Intrusion Detection and Mitigation Strategies.",
"title": "Recommended Practices"
},
{
"category": "general",
"text": "Organizations observing suspected malicious activity should follow established internal procedures and report findings to CISA for tracking and correlation against other incidents.",
"title": "Recommended Practices"
}
],
"publisher": {
"category": "other",
"contact_details": "central@cisa.dhs.gov",
"name": "CISA",
"namespace": "https://www.cisa.gov/"
},
"references": [
{
"category": "self",
"summary": "ICS Advisory ICSA-25-065-01 JSON",
"url": "https://raw.githubusercontent.com/cisagov/CSAF/develop/csaf_files/OT/white/2025/icsa-25-065-01.json"
},
{
"category": "self",
"summary": "CYBERSECURITY ADVISORY - OpenSSL Vulnerabilities in Hitachi Energy PCU400 Product",
"url": "https://publisher.hitachienergy.com/preview?DocumentId=8dbd000213\u0026languageCode=en\u0026Preview=true"
},
{
"category": "self",
"summary": "ICS Advisory ICSA-25-065-01 - Web Version",
"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-065-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/alerts/ICS-ALERT-10-301-01"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/resources-tools/resources/ics-recommended-practices"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/topics/industrial-control-systems"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://us-cert.cisa.gov/sites/default/files/recommended_practices/NCCIC_ICS-CERT_Defense_in_Depth_2016_S508C.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/sites/default/files/publications/Cybersecurity_Best_Practices_for_Industrial_Control_Systems.pdf"
},
{
"category": "external",
"summary": "Recommended Practices",
"url": "https://www.cisa.gov/uscert/ics/tips/ICS-TIP-12-146-01B"
}
],
"title": "Hitachi Energy PCU400",
"tracking": {
"current_release_date": "2025-02-25T13:30:00.000000Z",
"generator": {
"date": "2025-02-25T09:29:19.632000Z",
"engine": {
"name": "CISA CSAF Generator",
"version": "1.0.0"
}
},
"id": "ICSA-25-065-01",
"initial_release_date": "2025-02-25T13:30:00.000000Z",
"revision_history": [
{
"date": "2025-02-25T13:30:00.000000Z",
"number": "1",
"summary": "Initial version."
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=6.5_K",
"product": {
"name": "PCU400 versions 6.5 K and below",
"product_id": "CSAFPID-0001"
}
},
{
"category": "product_version_range",
"name": "\u003c=9.4.1",
"product": {
"name": "PCU400 versions 9.4.1 and below",
"product_id": "CSAFPID-0002"
}
},
{
"category": "product_version",
"name": "6.6.0",
"product": {
"name": "PCU400 version 6.6.0",
"product_id": "CSAFPID-0003"
}
},
{
"category": "product_version",
"name": "9.4.2",
"product": {
"name": "PCU400 version 9.4.2",
"product_id": "CSAFPID-0004"
}
}
],
"category": "product_family",
"name": "PCU400"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c=1.1.0",
"product": {
"name": "PCULogger versions 1.1.0 and below",
"product_id": "CSAFPID-0005"
}
},
{
"category": "product_version",
"name": "1.2.0",
"product": {
"name": "PCULogger version 1.2.0",
"product_id": "CSAFPID-0006"
}
}
],
"category": "product_family",
"name": "PCULogger"
}
],
"category": "vendor",
"name": "Hitachi Energy"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-0286",
"cwe": {
"id": "CWE-843",
"name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)"
},
"notes": [
{
"category": "description",
"text": "There is a type confusion vulnerability relating to X.400 address processing inside an X.509 GeneralName. X.400 addresses were parsed as an ASN1_STRING but the public structure definition for GENERAL_NAME incorrectly specified the type of the\nx400Address field as ASN1_TYPE. This field is subsequently interpreted by the OpenSSL function GENERAL_NAME_cmp as an ASN1_TYPE rather than an ASN1_STRING. When CRL checking is enabled (i.e. the application sets the\nX509_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 enact a denial of service. In most cases, the attack requires the attacker to provide both the certificate chain and CRL, neither of which need to have 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. As such, this vulnerability is most likely to only affect applications which have implemented their own functionality for retrieving CRLs over a network.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2023-0286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0286"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"environmentalScore": 7.4,
"environmentalSeverity": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.4,
"temporalSeverity": "HIGH",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2023-0217",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "description",
"text": "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. This will most likely lead 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 attack. The TLS implementation in OpenSSL does not call this function but applications might call the function if there are additional security requirements imposed by standards such as FIPS 140-3.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2023-0217",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0217"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"environmentalScore": 7.5,
"environmentalSeverity": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.5,
"temporalSeverity": "HIGH",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2023-0216",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "description",
"text": "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. The result of the dereference is an application crash which could lead to a denial of service attack. The TLS implementation in OpenSSL does not\ncall this function however third party applications might call these functions on untrusted data.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2023-0216",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0216"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"environmentalScore": 7.5,
"environmentalSeverity": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.5,
"temporalSeverity": "HIGH",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2023-0401",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "description",
"text": "A NULL pointer 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. The unavailability of an algorithm can be caused by using FIPS enabled configuration of providers or more commonly by not loading the legacy provider. PKCS7 data is processed by the SMIME library calls and also by the time\nstamp (TS) library calls. The TLS implementation in OpenSSL does not call these functions however third party applications would be affected if they call these functions to verify signatures on untrusted data.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2023-0401",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0401"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"environmentalScore": 7.5,
"environmentalSeverity": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.5,
"temporalSeverity": "HIGH",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "description",
"text": "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 to OpenSSL to support the SMIME, CMS and PKCS7 streaming capabilities, but may also be called directly by end user\napplications. 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 goes on to call BIO_pop() on the BIO then a use-after-free will occur. This will most likely result in a crash. This scenario occurs directly in the internal function B64_write_ASN1() which may cause BIO_new_NDEF() to be called and will subsequently call BIO_pop() on the BIO. This internal function is in turn called by the public API functions PEM_write_bio_ASN1_stream,\nPEM_write_bio_CMS_stream, PEM_write_bio_PKCS7_stream, SMIME_write_ASN1, SMIME_write_CMS and SMIME_write_PKCS7. Other public API functions that may be impacted by this include i2d_ASN1_bio_stream, BIO_new_CMS, BIO_new_PKCS7, i2d_CMS_bio_stream and i2d_PKCS7_bio_stream. The OpenSSL cms and smime command line applications are similarly affected.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2023-0215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0215"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"environmentalScore": 7.5,
"environmentalSeverity": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.5,
"temporalSeverity": "HIGH",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "description",
"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. If the function succeeds then the \"name_out\", \"header\" and \"data\" arguments are\npopulated with pointers to buffers containing the relevant decoded data. The caller is responsible for freeing those buffers. It is possible to construct a PEM file that results\nin 0 bytes of payload data. In this case PEM_read_bio_ex() will return a failure code but will populate the header argument with a pointer to a buffer that has already been freed. If the caller also frees this buffer then a double free will occur. This will most\nlikely lead to a crash. This could be exploited by an attacker who has the ability to supply malicious PEM files for parsing to achieve a denial of service attack. The functions PEM_read_bio() and PEM_read() are simple wrappers around\nPEM_read_bio_ex() and therefore these functions are also directly affected. These functions are also called indirectly by a number of other OpenSSL functions including\nPEM_X509_INFO_read_bio_ex() and SSL_CTX_use_serverinfo_file() which are also vulnerable. Some OpenSSL internal uses of these functions are not vulnerable because the caller does not free the header argument if PEM_read_bio_ex() returns a failure code. These locations include the PEM_read_bio_TYPE() functions as well as the decoders introduced in OpenSSL 3.0. The OpenSSL asn1parse command line application is also impacted by this issue.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2022-4450",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4450"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"environmentalScore": 7.5,
"environmentalSeverity": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.5,
"temporalSeverity": "HIGH",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-203",
"name": "Observable Discrepancy"
},
"notes": [
{
"category": "description",
"text": "A timing based side channel exists in the OpenSSL RSA Decryption implementation which could be sufficient to recover a plaintext across a network in a Bleichenbacher\nstyle attack. To achieve a successful decryption an attacker would have to be able to send a very large number of trial messages for decryption. The vulnerability affects all RSA padding modes: PKCS#1 v1.5, RSA-OEAP and RSASVE. For example, in a TLS connection, RSA is commonly used by a client to send an encrypted pre-master secret to the server. An attacker that had observed a genuine connection between a client\nand a server could use this flaw to send trial messages to the server and record the time taken to process them. After a sufficiently large number of messages the attacker could recover the pre-master secret used for the original connection and thus be able to decrypt the application data sent over that connection.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2022-4304",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4304"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"environmentalScore": 5.9,
"environmentalSeverity": "MEDIUM",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 5.9,
"temporalSeverity": "MEDIUM",
"userInteraction": "NONE",
"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-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
},
{
"cve": "CVE-2022-4203",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "description",
"text": "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. The read buffer overrun might result in a crash which could lead to a denial of service attack. In theory it could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext) although we are not aware of any working exploit leading to memory contents disclosure as of the time of release of this advisory. In a TLS client, this can be triggered by connecting to a\nmalicious server. In a TLS server, this can be triggered if the server requests client authentication and a malicious client connects.",
"title": "CVE description"
}
],
"product_status": {
"fixed": [
"CSAFPID-0003",
"CSAFPID-0004",
"CSAFPID-0006"
],
"known_affected": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
},
"references": [
{
"category": "external",
"summary": "NVD - CVE-2022-4203",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-4203"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version\n6.6.0 or latest",
"product_ids": [
"CSAFPID-0001"
]
},
{
"category": "vendor_fix",
"details": "If IEC62351-3 secure for IEC104/DNP3 is used, then update to version 9.4.2 or latest",
"product_ids": [
"CSAFPID-0002"
]
},
{
"category": "no_fix_planned",
"details": "If the PCULogger program is used, then update to version 1.2.0* when available. This version is compatible with PCU400 9.4.2 and later",
"product_ids": [
"CSAFPID-0005"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 4.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"environmentalScore": 4.9,
"environmentalSeverity": "MEDIUM",
"integrityImpact": "NONE",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"temporalScore": 4.9,
"temporalSeverity": "MEDIUM",
"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": [
"CSAFPID-0001",
"CSAFPID-0002",
"CSAFPID-0005"
]
}
]
}
]
}
MSRC_CVE-2022-4450
Vulnerability from csaf_microsoft - Published: 2023-02-01 00:00 - Updated: 2026-02-18 02:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 20011-17086 | — | ||
| Unresolved product id: 18666-17084 | — | ||
| Unresolved product id: 17941-16820 | — | ||
| Unresolved product id: 17942-16820 | — | ||
| Unresolved product id: 17918-16820 | — | ||
| Unresolved product id: 17945-17086 | — | ||
| Unresolved product id: 17919-17086 | — | ||
| Unresolved product id: 17944-17086 | — | ||
| Unresolved product id: 17946-17084 | — |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 17086-1 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 17084-5 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 16820-10 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 16820-9 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 16820-12 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 17086-7 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 17086-11 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 17086-8 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 17084-6 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 17084-13 | — | ||
| Unresolved product id: 17084-2 | — | ||
| Unresolved product id: 17084-3 | — | ||
| Unresolved product id: 17086-4 | — | ||
| Unresolved product id: 17086-14 | — |
| URL | Category |
|---|---|
| https://msrc.microsoft.com/csaf/vex/2023/msrc_cve… | self |
| https://support.microsoft.com/lifecycle | external |
| https://www.first.org/cvss | external |
| https://msrc.microsoft.com/csaf/vex/2023/msrc_cve… | self |
{
"document": {
"category": "csaf_vex",
"csaf_version": "2.0",
"distribution": {
"text": "Public",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en-US",
"notes": [
{
"category": "general",
"text": "To determine the support lifecycle for your software, see the Microsoft Support Lifecycle: https://support.microsoft.com/lifecycle",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "The information provided in the Microsoft Knowledge Base is provided \\\"as is\\\" without warranty of any kind. Microsoft disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. In no event shall Microsoft Corporation or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if Microsoft Corporation or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply.",
"title": "Disclaimer"
}
],
"publisher": {
"category": "vendor",
"contact_details": "secure@microsoft.com",
"name": "Microsoft Security Response Center",
"namespace": "https://msrc.microsoft.com"
},
"references": [
{
"category": "self",
"summary": "CVE-2022-4450 Double free after calling PEM_read_bio_ex - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2023/msrc_cve-2022-4450.json"
},
{
"category": "external",
"summary": "Microsoft Support Lifecycle",
"url": "https://support.microsoft.com/lifecycle"
},
{
"category": "external",
"summary": "Common Vulnerability Scoring System",
"url": "https://www.first.org/cvss"
}
],
"title": "Double free after calling PEM_read_bio_ex",
"tracking": {
"current_release_date": "2026-02-18T02:00:28.000Z",
"generator": {
"date": "2026-02-18T13:38:39.159Z",
"engine": {
"name": "MSRC Generator",
"version": "1.0"
}
},
"id": "msrc_CVE-2022-4450",
"initial_release_date": "2023-02-01T00:00:00.000Z",
"revision_history": [
{
"date": "2023-02-14T00:00:00.000Z",
"legacy_version": "1",
"number": "1",
"summary": "Information published."
},
{
"date": "2023-02-13T00:00:00.000Z",
"legacy_version": "1.1",
"number": "2",
"summary": "Information published."
},
{
"date": "2024-04-06T00:00:00.000Z",
"legacy_version": "1.2",
"number": "3",
"summary": "Added hvloader to CBL-Mariner 2.0"
},
{
"date": "2024-06-30T07:00:00.000Z",
"legacy_version": "1.3",
"number": "4",
"summary": "Information published."
},
{
"date": "2024-08-15T00:00:00.000Z",
"legacy_version": "1.4",
"number": "5",
"summary": "Information published."
},
{
"date": "2026-02-18T02:00:28.000Z",
"legacy_version": "2",
"number": "6",
"summary": "Information published."
}
],
"status": "final",
"version": "6"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "3.0",
"product": {
"name": "Azure Linux 3.0",
"product_id": "17084"
}
},
{
"category": "product_version",
"name": "2.0",
"product": {
"name": "CBL Mariner 2.0",
"product_id": "17086"
}
},
{
"category": "product_version",
"name": "1.0",
"product": {
"name": "CBL Mariner 1.0",
"product_id": "16820"
}
}
],
"category": "product_name",
"name": "Azure Linux"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003ccbl2 hvloader 1.0.1-2",
"product": {
"name": "\u003ccbl2 hvloader 1.0.1-2",
"product_id": "1"
}
},
{
"category": "product_version",
"name": "cbl2 hvloader 1.0.1-2",
"product": {
"name": "cbl2 hvloader 1.0.1-2",
"product_id": "20011"
}
},
{
"category": "product_version_range",
"name": "\u003cazl3 hvloader 1.0.1-2",
"product": {
"name": "\u003cazl3 hvloader 1.0.1-2",
"product_id": "5"
}
},
{
"category": "product_version",
"name": "azl3 hvloader 1.0.1-2",
"product": {
"name": "azl3 hvloader 1.0.1-2",
"product_id": "18666"
}
},
{
"category": "product_version_range",
"name": "\u003cazl3 hvloader 1.0.1-4",
"product": {
"name": "\u003cazl3 hvloader 1.0.1-4",
"product_id": "6"
}
},
{
"category": "product_version",
"name": "azl3 hvloader 1.0.1-4",
"product": {
"name": "azl3 hvloader 1.0.1-4",
"product_id": "17946"
}
}
],
"category": "product_name",
"name": "hvloader"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003ccm1 rust 1.59.0-1",
"product": {
"name": "\u003ccm1 rust 1.59.0-1",
"product_id": "10"
}
},
{
"category": "product_version",
"name": "cm1 rust 1.59.0-1",
"product": {
"name": "cm1 rust 1.59.0-1",
"product_id": "17941"
}
},
{
"category": "product_version_range",
"name": "\u003ccbl2 rust 1.68.2-5",
"product": {
"name": "\u003ccbl2 rust 1.68.2-5",
"product_id": "8"
}
},
{
"category": "product_version",
"name": "cbl2 rust 1.68.2-5",
"product": {
"name": "cbl2 rust 1.68.2-5",
"product_id": "17944"
}
}
],
"category": "product_name",
"name": "rust"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003ccm1 openssl 1.1.1k-13",
"product": {
"name": "\u003ccm1 openssl 1.1.1k-13",
"product_id": "9"
}
},
{
"category": "product_version",
"name": "cm1 openssl 1.1.1k-13",
"product": {
"name": "cm1 openssl 1.1.1k-13",
"product_id": "17942"
}
},
{
"category": "product_version_range",
"name": "\u003ccbl2 openssl 1.1.1k-21",
"product": {
"name": "\u003ccbl2 openssl 1.1.1k-21",
"product_id": "7"
}
},
{
"category": "product_version",
"name": "cbl2 openssl 1.1.1k-21",
"product": {
"name": "cbl2 openssl 1.1.1k-21",
"product_id": "17945"
}
}
],
"category": "product_name",
"name": "openssl"
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003ccm1 cloud-hypervisor 22.0-2",
"product": {
"name": "\u003ccm1 cloud-hypervisor 22.0-2",
"product_id": "12"
}
},
{
"category": "product_version",
"name": "cm1 cloud-hypervisor 22.0-2",
"product": {
"name": "cm1 cloud-hypervisor 22.0-2",
"product_id": "17918"
}
},
{
"category": "product_version_range",
"name": "\u003ccbl2 cloud-hypervisor 30.0-2",
"product": {
"name": "\u003ccbl2 cloud-hypervisor 30.0-2",
"product_id": "11"
}
},
{
"category": "product_version",
"name": "cbl2 cloud-hypervisor 30.0-2",
"product": {
"name": "cbl2 cloud-hypervisor 30.0-2",
"product_id": "17919"
}
}
],
"category": "product_name",
"name": "cloud-hypervisor"
},
{
"category": "product_name",
"name": "azl3 edk2 20230301gitf80f052277c8-37",
"product": {
"name": "azl3 edk2 20230301gitf80f052277c8-37",
"product_id": "13"
}
},
{
"category": "product_name",
"name": "azl3 rust 1.86.0-1",
"product": {
"name": "azl3 rust 1.86.0-1",
"product_id": "2"
}
},
{
"category": "product_name",
"name": "azl3 rust 1.75.0-14",
"product": {
"name": "azl3 rust 1.75.0-14",
"product_id": "3"
}
},
{
"category": "product_name",
"name": "cbl2 qemu 6.2.0-24",
"product": {
"name": "cbl2 qemu 6.2.0-24",
"product_id": "4"
}
},
{
"category": "product_name",
"name": "cbl2 qemu 6.2.0-24",
"product": {
"name": "cbl2 qemu 6.2.0-24",
"product_id": "14"
}
}
],
"category": "vendor",
"name": "Microsoft"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 edk2 20230301gitf80f052277c8-37 as a component of Azure Linux 3.0",
"product_id": "17084-13"
},
"product_reference": "13",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccbl2 hvloader 1.0.1-2 as a component of CBL Mariner 2.0",
"product_id": "17086-1"
},
"product_reference": "1",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 hvloader 1.0.1-2 as a component of CBL Mariner 2.0",
"product_id": "20011-17086"
},
"product_reference": "20011",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003cazl3 hvloader 1.0.1-2 as a component of Azure Linux 3.0",
"product_id": "17084-5"
},
"product_reference": "5",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 hvloader 1.0.1-2 as a component of Azure Linux 3.0",
"product_id": "18666-17084"
},
"product_reference": "18666",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 rust 1.86.0-1 as a component of Azure Linux 3.0",
"product_id": "17084-2"
},
"product_reference": "2",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 rust 1.75.0-14 as a component of Azure Linux 3.0",
"product_id": "17084-3"
},
"product_reference": "3",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccm1 rust 1.59.0-1 as a component of CBL Mariner 1.0",
"product_id": "16820-10"
},
"product_reference": "10",
"relates_to_product_reference": "16820"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cm1 rust 1.59.0-1 as a component of CBL Mariner 1.0",
"product_id": "17941-16820"
},
"product_reference": "17941",
"relates_to_product_reference": "16820"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccm1 openssl 1.1.1k-13 as a component of CBL Mariner 1.0",
"product_id": "16820-9"
},
"product_reference": "9",
"relates_to_product_reference": "16820"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cm1 openssl 1.1.1k-13 as a component of CBL Mariner 1.0",
"product_id": "17942-16820"
},
"product_reference": "17942",
"relates_to_product_reference": "16820"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccm1 cloud-hypervisor 22.0-2 as a component of CBL Mariner 1.0",
"product_id": "16820-12"
},
"product_reference": "12",
"relates_to_product_reference": "16820"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cm1 cloud-hypervisor 22.0-2 as a component of CBL Mariner 1.0",
"product_id": "17918-16820"
},
"product_reference": "17918",
"relates_to_product_reference": "16820"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccbl2 openssl 1.1.1k-21 as a component of CBL Mariner 2.0",
"product_id": "17086-7"
},
"product_reference": "7",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 openssl 1.1.1k-21 as a component of CBL Mariner 2.0",
"product_id": "17945-17086"
},
"product_reference": "17945",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccbl2 cloud-hypervisor 30.0-2 as a component of CBL Mariner 2.0",
"product_id": "17086-11"
},
"product_reference": "11",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 cloud-hypervisor 30.0-2 as a component of CBL Mariner 2.0",
"product_id": "17919-17086"
},
"product_reference": "17919",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003ccbl2 rust 1.68.2-5 as a component of CBL Mariner 2.0",
"product_id": "17086-8"
},
"product_reference": "8",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 rust 1.68.2-5 as a component of CBL Mariner 2.0",
"product_id": "17944-17086"
},
"product_reference": "17944",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "\u003cazl3 hvloader 1.0.1-4 as a component of Azure Linux 3.0",
"product_id": "17084-6"
},
"product_reference": "6",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 hvloader 1.0.1-4 as a component of Azure Linux 3.0",
"product_id": "17946-17084"
},
"product_reference": "17946",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 qemu 6.2.0-24 as a component of CBL Mariner 2.0",
"product_id": "17086-4"
},
"product_reference": "4",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 qemu 6.2.0-24 as a component of CBL Mariner 2.0",
"product_id": "17086-14"
},
"product_reference": "14",
"relates_to_product_reference": "17086"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"flags": [
{
"label": "vulnerable_code_not_in_execute_path",
"product_ids": [
"17084-2",
"17084-3"
]
},
{
"label": "vulnerable_code_not_present",
"product_ids": [
"17084-13",
"17086-4",
"17086-14"
]
}
],
"notes": [
{
"category": "general",
"text": "openssl",
"title": "Assigning CNA"
}
],
"product_status": {
"fixed": [
"20011-17086",
"18666-17084",
"17941-16820",
"17942-16820",
"17918-16820",
"17945-17086",
"17919-17086",
"17944-17086",
"17946-17084"
],
"known_affected": [
"17086-1",
"17084-5",
"16820-10",
"16820-9",
"16820-12",
"17086-7",
"17086-11",
"17086-8",
"17084-6"
],
"known_not_affected": [
"17084-13",
"17084-2",
"17084-3",
"17086-4",
"17086-14"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-4450 Double free after calling PEM_read_bio_ex - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2023/msrc_cve-2022-4450.json"
}
],
"remediations": [
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "1.0.1-3:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"17086-1"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "1.0.1-4:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"17084-5",
"17084-6"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "1.59.0-1:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"16820-10"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "-:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"16820-9"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "22.0-2:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"16820-12"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "1.1.1k-21:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"17086-7"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "30.0-2:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"17086-11"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
},
{
"category": "vendor_fix",
"date": "2023-02-13T00:00:00.000Z",
"details": "1.68.2-5:Security Update:https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade",
"product_ids": [
"17086-8"
],
"url": "https://learn.microsoft.com/en-us/azure/azure-linux/tutorial-azure-linux-upgrade"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"environmentalsScore": 0.0,
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"temporalScore": 7.5,
"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": [
"17086-1",
"17084-5",
"16820-10",
"16820-9",
"16820-12",
"17086-7",
"17086-11",
"17086-8",
"17084-6"
]
}
],
"title": "Double free after calling PEM_read_bio_ex"
}
]
}
NCSC-2024-0246
Vulnerability from csaf_ncscnl - Published: 2024-06-11 13:29 - Updated: 2024-06-11 13:29| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
tecnomatix_plant_simulation
siemens
|
cpe:2.3:a:siemens:tecnomatix_plant_simulation:*:*:*:*:*:*:*:*
|
— |
{
"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, zoals SCALANCE, SICAM, Tecnomatix, SITOP en PowerSys.",
"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- Manipulatie van gegevens\n- Omzeilen van beveiligingsmaatregel\n- (Remote) code execution (Administrator/Root rechten)\n- (Remote) code execution (Gebruikersrechten)\n- Toegang tot systeemgegevens\n- Verhoogde gebruikersrechten\n\nDe kwaadwillende heeft hiervoor toegang nodig tot de productieomgeving. Het is goed gebruik een dergelijke omgeving niet publiek toegankelijk te hebben.\n",
"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": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
},
{
"category": "general",
"text": "Stack-based Buffer Overflow",
"title": "CWE-121"
},
{
"category": "general",
"text": "Heap-based Buffer Overflow",
"title": "CWE-122"
},
{
"category": "general",
"text": "Insufficient Granularity of Access Control",
"title": "CWE-1220"
},
{
"category": "general",
"text": "Write-what-where Condition",
"title": "CWE-123"
},
{
"category": "general",
"text": "Out-of-bounds Read",
"title": "CWE-125"
},
{
"category": "general",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "general",
"text": "Improper Null Termination",
"title": "CWE-170"
},
{
"category": "general",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
},
{
"category": "general",
"text": "Integer Underflow (Wrap or Wraparound)",
"title": "CWE-191"
},
{
"category": "general",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "general",
"text": "Exposure of Sensitive Information to an Unauthorized Actor",
"title": "CWE-200"
},
{
"category": "general",
"text": "Improper Privilege Management",
"title": "CWE-269"
},
{
"category": "general",
"text": "Improper Authentication",
"title": "CWE-287"
},
{
"category": "general",
"text": "Improper Certificate Validation",
"title": "CWE-295"
},
{
"category": "general",
"text": "Missing Encryption of Sensitive Data",
"title": "CWE-311"
},
{
"category": "general",
"text": "Cleartext Transmission of Sensitive Information",
"title": "CWE-319"
},
{
"category": "general",
"text": "Use of Hard-coded Cryptographic Key",
"title": "CWE-321"
},
{
"category": "general",
"text": "Missing Cryptographic Step",
"title": "CWE-325"
},
{
"category": "general",
"text": "Inadequate Encryption Strength",
"title": "CWE-326"
},
{
"category": "general",
"text": "Use of Weak Hash",
"title": "CWE-328"
},
{
"category": "general",
"text": "Use of Insufficiently Random Values",
"title": "CWE-330"
},
{
"category": "general",
"text": "Acceptance of Extraneous Untrusted Data With Trusted Data",
"title": "CWE-349"
},
{
"category": "general",
"text": "Cross-Site Request Forgery (CSRF)",
"title": "CWE-352"
},
{
"category": "general",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
},
{
"category": "general",
"text": "Creation of Temporary File in Directory with Insecure Permissions",
"title": "CWE-379"
},
{
"category": "general",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "general",
"text": "Missing Release of Memory after Effective Lifetime",
"title": "CWE-401"
},
{
"category": "general",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "general",
"text": "Double Free",
"title": "CWE-415"
},
{
"category": "general",
"text": "Use After Free",
"title": "CWE-416"
},
{
"category": "general",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
},
{
"category": "general",
"text": "Insufficiently Protected Credentials",
"title": "CWE-522"
},
{
"category": "general",
"text": "Unsynchronized Access to Shared Data in a Multithreaded Context",
"title": "CWE-567"
},
{
"category": "general",
"text": "Insufficient Session Expiration",
"title": "CWE-613"
},
{
"category": "general",
"text": "Sensitive Cookie in HTTPS Session Without \u0027Secure\u0027 Attribute",
"title": "CWE-614"
},
{
"category": "general",
"text": "Improper Control of a Resource Through its Lifetime",
"title": "CWE-664"
},
{
"category": "general",
"text": "Improper Locking",
"title": "CWE-667"
},
{
"category": "general",
"text": "Incorrect Type Conversion or Cast",
"title": "CWE-704"
},
{
"category": "general",
"text": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)",
"title": "CWE-74"
},
{
"category": "general",
"text": "Exposed Dangerous Method or Function",
"title": "CWE-749"
},
{
"category": "general",
"text": "Improper Check for Unusual or Exceptional Conditions",
"title": "CWE-754"
},
{
"category": "general",
"text": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)",
"title": "CWE-77"
},
{
"category": "general",
"text": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)",
"title": "CWE-78"
},
{
"category": "general",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "general",
"text": "Deadlock",
"title": "CWE-833"
},
{
"category": "general",
"text": "Excessive Iteration",
"title": "CWE-834"
},
{
"category": "general",
"text": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)",
"title": "CWE-835"
},
{
"category": "general",
"text": "Improper Control of Generation of Code (\u0027Code Injection\u0027)",
"title": "CWE-94"
}
],
"publisher": {
"category": "coordinator",
"contact_details": "cert@ncsc.nl",
"name": "Nationaal Cyber Security Centrum",
"namespace": "https://www.ncsc.nl/"
},
"references": [
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-024584.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-196737.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-238730.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-319319.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-337522.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-341067.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-481506.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-540640.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-620338.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-625862.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-690517.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-879734.pdf"
},
{
"category": "external",
"summary": "Reference - ncscclear; siemens",
"url": "https://cert-portal.siemens.com/productcert/pdf/ssa-900277.pdf"
}
],
"title": "Kwetsbaarheden verholpen in Siemens producten",
"tracking": {
"current_release_date": "2024-06-11T13:29:25.912614Z",
"id": "NCSC-2024-0246",
"initial_release_date": "2024-06-11T13:29:25.912614Z",
"revision_history": [
{
"date": "2024-06-11T13:29:25.912614Z",
"number": "0",
"summary": "Initiele versie"
}
],
"status": "final",
"version": "1.0.0"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "mendix",
"product": {
"name": "mendix",
"product_id": "CSAFPID-538452",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:mendix:*:*:*:*:*:*:*:*"
}
}
},
{
"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": "sinec-nms",
"product": {
"name": "sinec-nms",
"product_id": "CSAFPID-163798",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:sinec-nms:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "tecnomatix_plant_simulation",
"product": {
"name": "tecnomatix_plant_simulation",
"product_id": "CSAFPID-166120",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:tecnomatix_plant_simulation:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "tia_administrator",
"product": {
"name": "tia_administrator",
"product_id": "CSAFPID-766096",
"product_identification_helper": {
"cpe": "cpe:2.3:a:siemens:tia_administrator:*:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "scalance_w700",
"product": {
"name": "scalance_w700",
"product_id": "CSAFPID-1009262",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:scalance_w700:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "scalance_xm-400",
"product": {
"name": "scalance_xm-400",
"product_id": "CSAFPID-1014214",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:scalance_xm-400:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "scalance_xr-500",
"product": {
"name": "scalance_xr-500",
"product_id": "CSAFPID-1014213",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:scalance_xr-500:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "sicam_ak_3",
"product": {
"name": "sicam_ak_3",
"product_id": "CSAFPID-1007975",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:sicam_ak_3:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "sicam_bc",
"product": {
"name": "sicam_bc",
"product_id": "CSAFPID-1007979",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:sicam_bc:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "sicam_tm",
"product": {
"name": "sicam_tm",
"product_id": "CSAFPID-1007978",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:sicam_tm:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "siplus_tim_1531_irc",
"product": {
"name": "siplus_tim_1531_irc",
"product_id": "CSAFPID-1326635",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:siplus_tim_1531_irc:-:*:*:*:*:*:*:*"
}
}
},
{
"category": "product_name",
"name": "sitop_ups1600",
"product": {
"name": "sitop_ups1600",
"product_id": "CSAFPID-1037908",
"product_identification_helper": {
"cpe": "cpe:2.3:h:siemens:sitop_ups1600:-:*:*:*:*:*:*:*"
}
}
}
],
"category": "vendor",
"name": "siemens"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-28319",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-28319",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-28319.json"
}
],
"title": "CVE-2023-28319"
},
{
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-28484",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-28484.json"
}
],
"title": "CVE-2023-28484"
},
{
"cve": "CVE-2023-29331",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-29331",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-29331.json"
}
],
"title": "CVE-2023-29331"
},
{
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-29469",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-29469.json"
}
],
"title": "CVE-2023-29469"
},
{
"cve": "CVE-2023-32032",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-32032",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-32032.json"
}
],
"title": "CVE-2023-32032"
},
{
"cve": "CVE-2023-33126",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-33126",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-33126.json"
}
],
"title": "CVE-2023-33126"
},
{
"cve": "CVE-2023-33127",
"cwe": {
"id": "CWE-1220",
"name": "Insufficient Granularity of Access Control"
},
"notes": [
{
"category": "other",
"text": "Insufficient Granularity of Access Control",
"title": "CWE-1220"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-33127",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-33127.json"
}
],
"title": "CVE-2023-33127"
},
{
"cve": "CVE-2023-33128",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-33128",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-33128.json"
}
],
"title": "CVE-2023-33128"
},
{
"cve": "CVE-2023-33135",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-33135",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-33135.json"
}
],
"title": "CVE-2023-33135"
},
{
"cve": "CVE-2023-33170",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "other",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-33170",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-33170.json"
}
],
"title": "CVE-2023-33170"
},
{
"cve": "CVE-2023-35390",
"cwe": {
"id": "CWE-77",
"name": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)"
},
"notes": [
{
"category": "other",
"text": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)",
"title": "CWE-77"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35390",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35390.json"
}
],
"title": "CVE-2023-35390"
},
{
"cve": "CVE-2023-35391",
"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 Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35391",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35391.json"
}
],
"title": "CVE-2023-35391"
},
{
"cve": "CVE-2023-35788",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35788",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35788.json"
}
],
"title": "CVE-2023-35788"
},
{
"cve": "CVE-2023-35823",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35823",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35823.json"
}
],
"title": "CVE-2023-35823"
},
{
"cve": "CVE-2023-35824",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35824",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35824.json"
}
],
"title": "CVE-2023-35824"
},
{
"cve": "CVE-2023-35828",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "other",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35828",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35828.json"
}
],
"title": "CVE-2023-35828"
},
{
"cve": "CVE-2023-35829",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-35829",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-35829.json"
}
],
"title": "CVE-2023-35829"
},
{
"cve": "CVE-2023-36038",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36038",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36038.json"
}
],
"title": "CVE-2023-36038"
},
{
"cve": "CVE-2023-36049",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Improper Control of Generation of Code (\u0027Code Injection\u0027)",
"title": "CWE-94"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36049",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36049.json"
}
],
"title": "CVE-2023-36049"
},
{
"cve": "CVE-2023-36435",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Missing Release of Memory after Effective Lifetime",
"title": "CWE-401"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36435",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36435.json"
}
],
"title": "CVE-2023-36435"
},
{
"cve": "CVE-2023-36558",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36558",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36558.json"
}
],
"title": "CVE-2023-36558"
},
{
"cve": "CVE-2023-36792",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Missing Encryption of Sensitive Data",
"title": "CWE-311"
},
{
"category": "other",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36792",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36792.json"
}
],
"title": "CVE-2023-36792"
},
{
"cve": "CVE-2023-36793",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Missing Encryption of Sensitive Data",
"title": "CWE-311"
},
{
"category": "other",
"text": "Heap-based Buffer Overflow",
"title": "CWE-122"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36793",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36793.json"
}
],
"title": "CVE-2023-36793"
},
{
"cve": "CVE-2023-36794",
"cwe": {
"id": "CWE-311",
"name": "Missing Encryption of Sensitive Data"
},
"notes": [
{
"category": "other",
"text": "Missing Encryption of Sensitive Data",
"title": "CWE-311"
},
{
"category": "other",
"text": "Integer Underflow (Wrap or Wraparound)",
"title": "CWE-191"
},
{
"category": "other",
"text": "Improper Restriction of Operations within the Bounds of a Memory Buffer",
"title": "CWE-119"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36794",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36794.json"
}
],
"title": "CVE-2023-36794"
},
{
"cve": "CVE-2023-36796",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Missing Encryption of Sensitive Data",
"title": "CWE-311"
},
{
"category": "other",
"text": "Integer Underflow (Wrap or Wraparound)",
"title": "CWE-191"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36796",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36796.json"
}
],
"title": "CVE-2023-36796"
},
{
"cve": "CVE-2023-36799",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-36799",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-36799.json"
}
],
"title": "CVE-2023-36799"
},
{
"cve": "CVE-2023-38171",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-38171",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-38171.json"
}
],
"title": "CVE-2023-38171"
},
{
"cve": "CVE-2023-38178",
"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": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-38178",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-38178.json"
}
],
"title": "CVE-2023-38178"
},
{
"cve": "CVE-2023-38180",
"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": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-38180",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-38180.json"
}
],
"title": "CVE-2023-38180"
},
{
"cve": "CVE-2023-38380",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-38380",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-38380.json"
}
],
"title": "CVE-2023-38380"
},
{
"cve": "CVE-2023-38533",
"cwe": {
"id": "CWE-379",
"name": "Creation of Temporary File in Directory with Insecure Permissions"
},
"notes": [
{
"category": "other",
"text": "Creation of Temporary File in Directory with Insecure Permissions",
"title": "CWE-379"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-38533",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-38533.json"
}
],
"title": "CVE-2023-38533"
},
{
"cve": "CVE-2023-39615",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-39615",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-39615.json"
}
],
"title": "CVE-2023-39615"
},
{
"cve": "CVE-2023-41910",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-41910",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-41910.json"
}
],
"title": "CVE-2023-41910"
},
{
"cve": "CVE-2023-44317",
"cwe": {
"id": "CWE-349",
"name": "Acceptance of Extraneous Untrusted Data With Trusted Data"
},
"notes": [
{
"category": "other",
"text": "Acceptance of Extraneous Untrusted Data With Trusted Data",
"title": "CWE-349"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-44317",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44317.json"
}
],
"title": "CVE-2023-44317"
},
{
"cve": "CVE-2023-44318",
"cwe": {
"id": "CWE-321",
"name": "Use of Hard-coded Cryptographic Key"
},
"notes": [
{
"category": "other",
"text": "Use of Hard-coded Cryptographic Key",
"title": "CWE-321"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-44318",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44318.json"
}
],
"title": "CVE-2023-44318"
},
{
"cve": "CVE-2023-44319",
"cwe": {
"id": "CWE-328",
"name": "Use of Weak Hash"
},
"notes": [
{
"category": "other",
"text": "Use of Weak Hash",
"title": "CWE-328"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-44319",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44319.json"
}
],
"title": "CVE-2023-44319"
},
{
"cve": "CVE-2023-44373",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-44373",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44373.json"
}
],
"title": "CVE-2023-44373"
},
{
"cve": "CVE-2023-44374",
"cwe": {
"id": "CWE-567",
"name": "Unsynchronized Access to Shared Data in a Multithreaded Context"
},
"notes": [
{
"category": "other",
"text": "Unsynchronized Access to Shared Data in a Multithreaded Context",
"title": "CWE-567"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-44374",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44374.json"
}
],
"title": "CVE-2023-44374"
},
{
"cve": "CVE-2023-44487",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-44487",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-44487.json"
}
],
"title": "CVE-2023-44487"
},
{
"cve": "CVE-2023-49691",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-49691",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-49691.json"
}
],
"title": "CVE-2023-49691"
},
{
"cve": "CVE-2023-50763",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"notes": [
{
"category": "other",
"text": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)",
"title": "CWE-835"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-50763",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-50763.json"
}
],
"title": "CVE-2023-50763"
},
{
"cve": "CVE-2023-52474",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-52474",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-52474.json"
}
],
"title": "CVE-2023-52474"
},
{
"cve": "CVE-2024-0775",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-0775",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-0775.json"
}
],
"title": "CVE-2024-0775"
},
{
"cve": "CVE-2024-31484",
"cwe": {
"id": "CWE-170",
"name": "Improper Null Termination"
},
"notes": [
{
"category": "other",
"text": "Improper Null Termination",
"title": "CWE-170"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-31484",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-31484.json"
}
],
"title": "CVE-2024-31484"
},
{
"cve": "CVE-2024-33500",
"cwe": {
"id": "CWE-269",
"name": "Improper Privilege Management"
},
"notes": [
{
"category": "other",
"text": "Improper Privilege Management",
"title": "CWE-269"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-33500",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-33500.json"
}
],
"title": "CVE-2024-33500"
},
{
"cve": "CVE-2024-35206",
"cwe": {
"id": "CWE-613",
"name": "Insufficient Session Expiration"
},
"notes": [
{
"category": "other",
"text": "Insufficient Session Expiration",
"title": "CWE-613"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35206",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35206.json"
}
],
"title": "CVE-2024-35206"
},
{
"cve": "CVE-2024-35207",
"cwe": {
"id": "CWE-352",
"name": "Cross-Site Request Forgery (CSRF)"
},
"notes": [
{
"category": "other",
"text": "Cross-Site Request Forgery (CSRF)",
"title": "CWE-352"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35207",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35207.json"
}
],
"title": "CVE-2024-35207"
},
{
"cve": "CVE-2024-35208",
"cwe": {
"id": "CWE-522",
"name": "Insufficiently Protected Credentials"
},
"notes": [
{
"category": "other",
"text": "Insufficiently Protected Credentials",
"title": "CWE-522"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35208",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35208.json"
}
],
"title": "CVE-2024-35208"
},
{
"cve": "CVE-2024-35209",
"cwe": {
"id": "CWE-749",
"name": "Exposed Dangerous Method or Function"
},
"notes": [
{
"category": "other",
"text": "Exposed Dangerous Method or Function",
"title": "CWE-749"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35209",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35209.json"
}
],
"title": "CVE-2024-35209"
},
{
"cve": "CVE-2024-35210",
"cwe": {
"id": "CWE-319",
"name": "Cleartext Transmission of Sensitive Information"
},
"notes": [
{
"category": "other",
"text": "Cleartext Transmission of Sensitive Information",
"title": "CWE-319"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35210",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35210.json"
}
],
"title": "CVE-2024-35210"
},
{
"cve": "CVE-2024-35211",
"cwe": {
"id": "CWE-614",
"name": "Sensitive Cookie in HTTPS Session Without \u0027Secure\u0027 Attribute"
},
"notes": [
{
"category": "other",
"text": "Sensitive Cookie in HTTPS Session Without \u0027Secure\u0027 Attribute",
"title": "CWE-614"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35211",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35211.json"
}
],
"title": "CVE-2024-35211"
},
{
"cve": "CVE-2024-35212",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35212",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35212.json"
}
],
"title": "CVE-2024-35212"
},
{
"cve": "CVE-2024-35292",
"cwe": {
"id": "CWE-330",
"name": "Use of Insufficiently Random Values"
},
"notes": [
{
"category": "other",
"text": "Use of Insufficiently Random Values",
"title": "CWE-330"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-35292",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35292.json"
}
],
"title": "CVE-2024-35292"
},
{
"cve": "CVE-2024-35303",
"cwe": {
"id": "CWE-704",
"name": "Incorrect Type Conversion or Cast"
},
"notes": [
{
"category": "other",
"text": "Incorrect Type Conversion or Cast",
"title": "CWE-704"
}
],
"product_status": {
"known_affected": [
"CSAFPID-166120"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-35303",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-35303.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-166120"
]
}
],
"title": "CVE-2024-35303"
},
{
"cve": "CVE-2024-36266",
"cwe": {
"id": "CWE-287",
"name": "Improper Authentication"
},
"notes": [
{
"category": "other",
"text": "Improper Authentication",
"title": "CWE-287"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2024-36266",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2024/CVE-2024-36266.json"
}
],
"title": "CVE-2024-36266"
},
{
"cve": "CVE-2021-47178",
"cwe": {
"id": "CWE-121",
"name": "Stack-based Buffer Overflow"
},
"notes": [
{
"category": "other",
"text": "Stack-based Buffer Overflow",
"title": "CWE-121"
},
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2021-47178",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2021/CVE-2021-47178.json"
}
],
"title": "CVE-2021-47178"
},
{
"cve": "CVE-2022-1015",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-1015",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-1015.json"
}
],
"title": "CVE-2022-1015"
},
{
"cve": "CVE-2022-2097",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "other",
"text": "Inadequate Encryption Strength",
"title": "CWE-326"
},
{
"category": "other",
"text": "Missing Cryptographic Step",
"title": "CWE-325"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-2097",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-2097.json"
}
],
"title": "CVE-2022-2097"
},
{
"cve": "CVE-2022-3435",
"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": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-3435",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-3435.json"
}
],
"title": "CVE-2022-3435"
},
{
"cve": "CVE-2022-3545",
"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": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-3545",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-3545.json"
}
],
"title": "CVE-2022-3545"
},
{
"cve": "CVE-2022-3623",
"cwe": {
"id": "CWE-123",
"name": "Write-what-where Condition"
},
"notes": [
{
"category": "other",
"text": "Write-what-where Condition",
"title": "CWE-123"
},
{
"category": "other",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-3623",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-3623.json"
}
],
"title": "CVE-2022-3623"
},
{
"cve": "CVE-2022-3643",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-3643",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-3643.json"
}
],
"title": "CVE-2022-3643"
},
{
"cve": "CVE-2022-4304",
"cwe": {
"id": "CWE-326",
"name": "Inadequate Encryption Strength"
},
"notes": [
{
"category": "other",
"text": "Inadequate Encryption Strength",
"title": "CWE-326"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-4304",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-4304.json"
}
],
"title": "CVE-2022-4304"
},
{
"cve": "CVE-2022-4450",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "other",
"text": "Double Free",
"title": "CWE-415"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-4450",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-4450.json"
}
],
"title": "CVE-2022-4450"
},
{
"cve": "CVE-2022-36323",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-36323",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-36323.json"
}
],
"title": "CVE-2022-36323"
},
{
"cve": "CVE-2022-39189",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
},
{
"category": "other",
"text": "Missing Encryption of Sensitive Data",
"title": "CWE-311"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-39189",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-39189.json"
}
],
"title": "CVE-2022-39189"
},
{
"cve": "CVE-2022-40225",
"cwe": {
"id": "CWE-681",
"name": "Incorrect Conversion between Numeric Types"
},
"notes": [
{
"category": "other",
"text": "Incorrect Conversion between Numeric Types",
"title": "CWE-681"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-40225",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-40225.json"
}
],
"title": "CVE-2022-40225"
},
{
"cve": "CVE-2022-40303",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"notes": [
{
"category": "other",
"text": "Integer Overflow or Wraparound",
"title": "CWE-190"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-40303",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-40303.json"
}
],
"title": "CVE-2022-40303"
},
{
"cve": "CVE-2022-40304",
"cwe": {
"id": "CWE-415",
"name": "Double Free"
},
"notes": [
{
"category": "other",
"text": "Double Free",
"title": "CWE-415"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-40304",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-40304.json"
}
],
"title": "CVE-2022-40304"
},
{
"cve": "CVE-2022-41742",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-41742",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-41742.json"
}
],
"title": "CVE-2022-41742"
},
{
"cve": "CVE-2022-42328",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "other",
"text": "Improper Locking",
"title": "CWE-667"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-42328",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-42328.json"
}
],
"title": "CVE-2022-42328"
},
{
"cve": "CVE-2022-42329",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "other",
"text": "Improper Locking",
"title": "CWE-667"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-42329",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-42329.json"
}
],
"title": "CVE-2022-42329"
},
{
"cve": "CVE-2022-44792",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-44792",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-44792.json"
}
],
"title": "CVE-2022-44792"
},
{
"cve": "CVE-2022-44793",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"notes": [
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-44793",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-44793.json"
}
],
"title": "CVE-2022-44793"
},
{
"cve": "CVE-2022-45886",
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-45886",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-45886.json"
}
],
"title": "CVE-2022-45886"
},
{
"cve": "CVE-2022-45887",
"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": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-45887",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-45887.json"
}
],
"title": "CVE-2022-45887"
},
{
"cve": "CVE-2022-45919",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-45919",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-45919.json"
}
],
"title": "CVE-2022-45919"
},
{
"cve": "CVE-2022-46144",
"cwe": {
"id": "CWE-664",
"name": "Improper Control of a Resource Through its Lifetime"
},
"notes": [
{
"category": "other",
"text": "Improper Control of a Resource Through its Lifetime",
"title": "CWE-664"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2022-46144",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2022/CVE-2022-46144.json"
}
],
"title": "CVE-2022-46144"
},
{
"cve": "CVE-2023-0160",
"cwe": {
"id": "CWE-833",
"name": "Deadlock"
},
"notes": [
{
"category": "other",
"text": "Deadlock",
"title": "CWE-833"
},
{
"category": "other",
"text": "Improper Locking",
"title": "CWE-667"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-0160",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0160.json"
}
],
"title": "CVE-2023-0160"
},
{
"cve": "CVE-2023-0215",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-0215",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0215.json"
}
],
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-0286",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0286.json"
}
],
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-0464",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0464.json"
}
],
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-0465",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0465.json"
}
],
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-0466",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-0466.json"
}
],
"title": "CVE-2023-0466"
},
{
"cve": "CVE-2023-1017",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-1017",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-1017.json"
}
],
"title": "CVE-2023-1017"
},
{
"cve": "CVE-2023-2124",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "other",
"text": "Out-of-bounds Read",
"title": "CWE-125"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-2124",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-2124.json"
}
],
"title": "CVE-2023-2124"
},
{
"cve": "CVE-2023-2269",
"cwe": {
"id": "CWE-667",
"name": "Improper Locking"
},
"notes": [
{
"category": "other",
"text": "Improper Locking",
"title": "CWE-667"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-2269",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-2269.json"
}
],
"title": "CVE-2023-2269"
},
{
"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"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-3446",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-3446.json"
}
],
"title": "CVE-2023-3446"
},
{
"cve": "CVE-2023-3817",
"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": "Excessive Iteration",
"title": "CWE-834"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-3817",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-3817.json"
}
],
"title": "CVE-2023-3817"
},
{
"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"
}
],
"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-21255",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"notes": [
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
},
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-21255",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-21255.json"
}
],
"title": "CVE-2023-21255"
},
{
"cve": "CVE-2023-21808",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Use After Free",
"title": "CWE-416"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-21808",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-21808.json"
}
],
"title": "CVE-2023-21808"
},
{
"cve": "CVE-2023-24895",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-24895",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-24895.json"
}
],
"title": "CVE-2023-24895"
},
{
"cve": "CVE-2023-24897",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Heap-based Buffer Overflow",
"title": "CWE-122"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-24897",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-24897.json"
}
],
"title": "CVE-2023-24897"
},
{
"cve": "CVE-2023-24936",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-24936",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-24936.json"
}
],
"title": "CVE-2023-24936"
},
{
"cve": "CVE-2023-26552",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-26552",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-26552.json"
}
],
"title": "CVE-2023-26552"
},
{
"cve": "CVE-2023-26553",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-26553",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-26553.json"
}
],
"title": "CVE-2023-26553"
},
{
"cve": "CVE-2023-26554",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-26554",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-26554.json"
}
],
"title": "CVE-2023-26554"
},
{
"cve": "CVE-2023-27321",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "NULL Pointer Dereference",
"title": "CWE-476"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-27321",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-27321.json"
}
],
"title": "CVE-2023-27321"
},
{
"cve": "CVE-2023-28260",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
}
],
"references": [
{
"category": "self",
"summary": "CVE-2023-28260",
"url": "https://api.ncsc.nl/velma/v1/vulnerabilities/2023/CVE-2023-28260.json"
}
],
"title": "CVE-2023-28260"
}
]
}
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.