Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-47712 (GCVE-0-2026-47712)
Vulnerability from cvelistv5 – Published: 2026-06-10 22:01 – Updated: 2026-06-11 12:42- CWE-22 - Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')
| URL | Tags |
|---|---|
| https://github.com/jelmer/dulwich/security/adviso… | x_refsource_CONFIRM |
| https://github.com/jelmer/dulwich/commit/c2446e51b | x_refsource_MISC |
| https://github.com/jelmer/dulwich/releases/tag/du… | x_refsource_MISC |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-47712",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-06-11T12:41:02.775185Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-06-11T12:42:40.209Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "dulwich",
"vendor": "jelmer",
"versions": [
{
"status": "affected",
"version": "\u003e= 0.24.0, \u003c 1.2.5"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.24.0 and prior to version 1.2.5, dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\"{i:04d}-{summary}.patch\"). A malicious commit subject could therefore direct the generated patch file outside the requested outdir. This is fixed in Dulwich 1.2.5. Users should upgrade to 1.2.5 or later. dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject. Until upgrading, callers that pass untrusted commits to porcelain.format_patch can use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename; validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir; and/or pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\, .., or other characters that are not safe on the target filesystem."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.3,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-22",
"description": "CWE-22: Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-06-10T22:01:49.996Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f"
},
{
"name": "https://github.com/jelmer/dulwich/commit/c2446e51b",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/jelmer/dulwich/commit/c2446e51b"
},
{
"name": "https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5",
"tags": [
"x_refsource_MISC"
],
"url": "https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5"
}
],
"source": {
"advisory": "GHSA-555p-6grf-mh7f",
"discovery": "UNKNOWN"
},
"title": "Dulwich doesn\u0027t sanitize commit subjects in `porcelain.format_patch`"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-47712",
"datePublished": "2026-06-10T22:01:49.996Z",
"dateReserved": "2026-05-19T21:29:25.481Z",
"dateUpdated": "2026-06-11T12:42:40.209Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-47712",
"date": "2026-08-10",
"epss": "0.00139",
"percentile": "0.0367"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-47712\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-06-10T23:16:48.650\",\"lastModified\":\"2026-07-21T19:10:00.107\",\"vulnStatus\":\"Deferred\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.24.0 and prior to version 1.2.5, dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\\\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\\\"{i:04d}-{summary}.patch\\\"). A malicious commit subject could therefore direct the generated patch file outside the requested outdir. This is fixed in Dulwich 1.2.5. Users should upgrade to 1.2.5 or later. dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject. Until upgrading, callers that pass untrusted commits to porcelain.format_patch can use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename; validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir; and/or pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\\\, .., or other characters that are not safe on the target filesystem.\"},{\"lang\":\"es\",\"value\":\"Dulwich es una implementaci\u00f3n puramente en Python de los formatos de archivo y protocolos de Git. A partir de la versi\u00f3n 0.24.0 y antes de la versi\u00f3n 1.2.5, dulwich.porcelain.format_patch(outdir=...) deriva cada nombre de archivo de parche de la l\u00ednea de asunto del commit. Antes de esta correcci\u00f3n, get_summary solo reemplazaba los espacios con guiones - los separadores de ruta (/, \\\\), los componentes de directorio padre (..), y otros caracteres hostiles para nombres de archivo (p. ej. :) se conservaban textualmente y se pasaban directamente a os.path.join(outdir, f\\\"{i:04d}-{summary}.patch\\\"). Un asunto de commit malicioso podr\u00eda, por lo tanto, dirigir el archivo de parche generado fuera del outdir solicitado. Esto se corrige en Dulwich 1.2.5. Los usuarios deber\u00edan actualizar a la versi\u00f3n 1.2.5 o posterior. dulwich.patch.get_summary ahora refleja el format_sanitized_subject de git: solo se mantienen \u0027[A-Za-z0-9._]\u0027, las secuencias de otros caracteres se colapsan a un solo -, los puntos consecutivos se colapsan a un solo ., los ./- finales se eliminan, y el resultado tiene una longitud limitada. Esto hace que la cadena devuelta sea segura para incrustar como un componente de nombre de archivo, por lo que format_patch ya no puede ser dirigido fuera de outdir a trav\u00e9s del asunto del commit. Hasta que se actualice, los llamadores que pasan commits no confiables a porcelain.format_patch pueden usar stdout=True y escribir el parche en un destino que controlen, en lugar de dejar que format_patch elija el nombre de archivo; validar la ruta elegida antes de abrir - p. ej. comparar os.path.realpath(returned_path) con os.path.realpath(outdir) y rechazar cualquier parche cuya ruta resuelta no est\u00e9 dentro de outdir; y/o pre-filtrar commits y negarse a formatear cualquiera cuya primera l\u00ednea del asunto contenga /, \\\\, .., u otros caracteres que no sean seguros en el sistema de archivos de destino.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"jelmer\",\"product\":\"dulwich\",\"versions\":[{\"version\":\"\u003e= 0.24.0, \u003c 1.2.5\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N\",\"baseScore\":3.3,\"baseSeverity\":\"LOW\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"REQUIRED\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"LOW\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":1.8,\"impactScore\":1.4}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-06-11T12:41:02.775185Z\",\"id\":\"CVE-2026-47712\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"no\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-22\"}]}],\"references\":[{\"url\":\"https://github.com/jelmer/dulwich/commit/c2446e51b\",\"source\":\"security-advisories@github.com\"},{\"url\":\"https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5\",\"source\":\"security-advisories@github.com\"},{\"url\":\"https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f\",\"source\":\"security-advisories@github.com\"}]}}",
"redhat_vex": {
"aggregate_severity": "Low",
"current_release_date": "2026-07-10T14:00:38+00:00",
"cve": "CVE-2026-47712",
"id": "CVE-2026-47712",
"initial_release_date": "2026-06-10T22:01:49.996000+00:00",
"product_status:known_affected": "24",
"product_status:under_investigation": "1",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "dulwich: Dulwich: Arbitrary file write via malicious commit subject in format_patch",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-47712.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "low",
"current_release_date": "2026-06-12T02:25:27Z",
"cve": "CVE-2026-47712",
"id": "CVE-2026-47712",
"initial_release_date": "2026-06-12T02:25:27Z",
"product_status:known_not_affected": "24",
"product_status:recommended": "3",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2026-47712",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-47712.json",
"version": "2"
},
"vulnrichment": {
"containers": "{\"cna\": {\"title\": \"Dulwich doesn\u0027t sanitize commit subjects in `porcelain.format_patch`\", \"problemTypes\": [{\"descriptions\": [{\"cweId\": \"CWE-22\", \"lang\": \"en\", \"description\": \"CWE-22: Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)\", \"type\": \"CWE\"}]}], \"metrics\": [{\"cvssV3_1\": {\"attackComplexity\": \"LOW\", \"attackVector\": \"LOCAL\", \"availabilityImpact\": \"NONE\", \"baseScore\": 3.3, \"baseSeverity\": \"LOW\", \"confidentialityImpact\": \"NONE\", \"integrityImpact\": \"LOW\", \"privilegesRequired\": \"NONE\", \"scope\": \"UNCHANGED\", \"userInteraction\": \"REQUIRED\", \"vectorString\": \"CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N\", \"version\": \"3.1\"}}], \"references\": [{\"name\": \"https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f\", \"tags\": [\"x_refsource_CONFIRM\"], \"url\": \"https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f\"}, {\"name\": \"https://github.com/jelmer/dulwich/commit/c2446e51b\", \"tags\": [\"x_refsource_MISC\"], \"url\": \"https://github.com/jelmer/dulwich/commit/c2446e51b\"}, {\"name\": \"https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5\", \"tags\": [\"x_refsource_MISC\"], \"url\": \"https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5\"}], \"affected\": [{\"vendor\": \"jelmer\", \"product\": \"dulwich\", \"versions\": [{\"version\": \"\u003e= 0.24.0, \u003c 1.2.5\", \"status\": \"affected\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-06-10T22:01:49.996Z\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.24.0 and prior to version 1.2.5, dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\\\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\\\"{i:04d}-{summary}.patch\\\"). A malicious commit subject could therefore direct the generated patch file outside the requested outdir. This is fixed in Dulwich 1.2.5. Users should upgrade to 1.2.5 or later. dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject. Until upgrading, callers that pass untrusted commits to porcelain.format_patch can use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename; validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir; and/or pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\\\, .., or other characters that are not safe on the target filesystem.\"}], \"source\": {\"advisory\": \"GHSA-555p-6grf-mh7f\", \"discovery\": \"UNKNOWN\"}}, \"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-47712\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-06-11T12:41:02.775185Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-06-11T12:41:33.222Z\"}}]}",
"cveMetadata": "{\"cveId\": \"CVE-2026-47712\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"state\": \"PUBLISHED\", \"assignerShortName\": \"GitHub_M\", \"dateReserved\": \"2026-05-19T21:29:25.481Z\", \"datePublished\": \"2026-06-10T22:01:49.996Z\", \"dateUpdated\": \"2026-06-11T12:42:40.209Z\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
FKIE_CVE-2026-47712
Vulnerability from fkie_nvd - Published: 2026-06-10 23:16 - Updated: 2026-07-21 19:10| Vendor | Product | Version |
|---|
{
"affected": [
{
"affectedData": [
{
"product": "dulwich",
"vendor": "jelmer",
"versions": [
{
"status": "affected",
"version": "\u003e= 0.24.0, \u003c 1.2.5"
}
]
}
],
"source": "security-advisories@github.com"
}
],
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.24.0 and prior to version 1.2.5, dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\"{i:04d}-{summary}.patch\"). A malicious commit subject could therefore direct the generated patch file outside the requested outdir. This is fixed in Dulwich 1.2.5. Users should upgrade to 1.2.5 or later. dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject. Until upgrading, callers that pass untrusted commits to porcelain.format_patch can use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename; validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir; and/or pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\, .., or other characters that are not safe on the target filesystem."
},
{
"lang": "es",
"value": "Dulwich es una implementaci\u00f3n puramente en Python de los formatos de archivo y protocolos de Git. A partir de la versi\u00f3n 0.24.0 y antes de la versi\u00f3n 1.2.5, dulwich.porcelain.format_patch(outdir=...) deriva cada nombre de archivo de parche de la l\u00ednea de asunto del commit. Antes de esta correcci\u00f3n, get_summary solo reemplazaba los espacios con guiones - los separadores de ruta (/, \\), los componentes de directorio padre (..), y otros caracteres hostiles para nombres de archivo (p. ej. :) se conservaban textualmente y se pasaban directamente a os.path.join(outdir, f\"{i:04d}-{summary}.patch\"). Un asunto de commit malicioso podr\u00eda, por lo tanto, dirigir el archivo de parche generado fuera del outdir solicitado. Esto se corrige en Dulwich 1.2.5. Los usuarios deber\u00edan actualizar a la versi\u00f3n 1.2.5 o posterior. dulwich.patch.get_summary ahora refleja el format_sanitized_subject de git: solo se mantienen \u0027[A-Za-z0-9._]\u0027, las secuencias de otros caracteres se colapsan a un solo -, los puntos consecutivos se colapsan a un solo ., los ./- finales se eliminan, y el resultado tiene una longitud limitada. Esto hace que la cadena devuelta sea segura para incrustar como un componente de nombre de archivo, por lo que format_patch ya no puede ser dirigido fuera de outdir a trav\u00e9s del asunto del commit. Hasta que se actualice, los llamadores que pasan commits no confiables a porcelain.format_patch pueden usar stdout=True y escribir el parche en un destino que controlen, en lugar de dejar que format_patch elija el nombre de archivo; validar la ruta elegida antes de abrir - p. ej. comparar os.path.realpath(returned_path) con os.path.realpath(outdir) y rechazar cualquier parche cuya ruta resuelta no est\u00e9 dentro de outdir; y/o pre-filtrar commits y negarse a formatear cualquiera cuya primera l\u00ednea del asunto contenga /, \\, .., u otros caracteres que no sean seguros en el sistema de archivos de destino."
}
],
"id": "CVE-2026-47712",
"lastModified": "2026-07-21T19:10:00.107",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.3,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"exploitabilityScore": 1.8,
"impactScore": 1.4,
"source": "security-advisories@github.com",
"type": "Secondary"
}
],
"ssvcV203": [
{
"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"ssvcData": {
"id": "CVE-2026-47712",
"options": [
{
"exploitation": "none"
},
{
"automatable": "no"
},
{
"technicalImpact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-06-11T12:41:02.775185Z",
"version": "2.0.3"
}
}
]
},
"published": "2026-06-10T23:16:48.650",
"references": [
{
"source": "security-advisories@github.com",
"url": "https://github.com/jelmer/dulwich/commit/c2446e51b"
},
{
"source": "security-advisories@github.com",
"url": "https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5"
},
{
"source": "security-advisories@github.com",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f"
}
],
"sourceIdentifier": "security-advisories@github.com",
"vulnStatus": "Deferred",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "CWE-22"
}
],
"source": "security-advisories@github.com",
"type": "Secondary"
}
]
}
GHSA-555P-6GRF-MH7F
Vulnerability from github – Published: 2026-06-08 23:04 – Updated: 2026-06-11 14:07Impact
dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit's subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, ), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f"{i:04d}-{summary}.patch").
A malicious commit subject could therefore direct the generated patch file outside the requested outdir. Reduced examples:
- x/../../x produced /0001-x/../../x.patch, resolving two directories above outdir.
- x....\x produced the equivalent escape on Windows, here \ is also a path separator.
Related issues from the same root cause:
- Subjects containing characters that are illegal in Windows filenames (e.g. :) caused format_patch to fail outright on Windows, where git would have succeeded.
- Very long subjects produced excessively long filenames that could exceed filesystem limits; git truncates them.
Anyone calling porcelain.format_patch (or the dulwich format-patch CLI) against untrusted commits - for example, a service that runs format-patch over user-supplied repositories or pull requests - could have patch files written to attacker-chosen locations within the process's write permissions.
Patches
Fixed in Dulwich 1.2.5. Users should upgrade.
dulwich.patch.get_summary now mirrors git's format_sanitized_subject: only [A-Za-z0-9._] are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject.
Workarounds
Until upgrading, callers that pass untrusted commits to porcelain.format_patch can:
- Use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename.
- Validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir.
- Pre-screen commits and refuse to format any whose subject's first line contains /, \, .., or other characters that are not safe on the target filesystem.
Resources
- Fix commit: https://github.com/jelmer/dulwich/commit/c2446e51b
- Affected API: dulwich.porcelain.format_patch / dulwich format-patch
- Reference behavior: git's format_sanitized_subject in pretty.c
{
"affected": [
{
"package": {
"ecosystem": "PyPI",
"name": "dulwich"
},
"ranges": [
{
"events": [
{
"introduced": "0.24.0"
},
{
"fixed": "1.2.5"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2026-47712"
],
"database_specific": {
"cwe_ids": [
"CWE-22"
],
"github_reviewed": true,
"github_reviewed_at": "2026-06-08T23:04:48Z",
"nvd_published_at": "2026-06-10T23:16:48Z",
"severity": "LOW"
},
"details": "### Impact\n\ndulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\"{i:04d}-{summary}.patch\").\n\nA malicious commit subject could therefore direct the generated patch file outside the requested outdir. Reduced examples:\n\n- x/../../x produced \u003coutdir\u003e/0001-x/../../x.patch, resolving\n two directories above outdir.\n- x\\..\\..\\x produced the equivalent escape on Windows, here \\ is also a path separator.\n\nRelated issues from the same root cause:\n\n- Subjects containing characters that are illegal in Windows filenames (e.g. :) caused format_patch to fail outright on Windows, where git would have succeeded.\n- Very long subjects produced excessively long filenames that could exceed filesystem limits; git truncates them.\n\nAnyone calling porcelain.format_patch (or the dulwich format-patch CLI) against untrusted commits - for example, a service that runs format-patch over user-supplied repositories or pull requests - could have patch files written to attacker-chosen locations within the process\u0027s write permissions.\n\n### Patches\n\nFixed in Dulwich 1.2.5. Users should upgrade.\n\n dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject.\n\n### Workarounds\n\nUntil upgrading, callers that pass untrusted commits to porcelain.format_patch can:\n\n- Use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename.\n- Validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir.\n- Pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\, .., or other characters that are not safe on the target filesystem.\n\n### Resources\n\n- Fix commit: https://github.com/jelmer/dulwich/commit/c2446e51b\n- Affected API: dulwich.porcelain.format_patch / dulwich format-patch\n- Reference behavior: git\u0027s format_sanitized_subject in pretty.c",
"id": "GHSA-555p-6grf-mh7f",
"modified": "2026-06-11T14:07:14Z",
"published": "2026-06-08T23:04:48Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47712"
},
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/commit/c2446e51b"
},
{
"type": "PACKAGE",
"url": "https://github.com/jelmer/dulwich"
},
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"type": "CVSS_V3"
}
],
"summary": "Dulwich doesn\u0027t sanitize commit subjects in `porcelain.format_patch`"
}
OPENSUSE-SU-2026:10900-1
Vulnerability from csaf_opensuse - Published: 2026-05-29 00:00 - Updated: 2026-05-29 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "python311-dulwich-1.2.5-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the python311-dulwich-1.2.5-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2026-10900",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_10900-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42305 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42305/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-42563 page",
"url": "https://www.suse.com/security/cve/CVE-2026-42563/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-47712 page",
"url": "https://www.suse.com/security/cve/CVE-2026-47712/"
}
],
"title": "python311-dulwich-1.2.5-1.1 on GA media",
"tracking": {
"current_release_date": "2026-05-29T00:00:00Z",
"generator": {
"date": "2026-05-29T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:10900-1",
"initial_release_date": "2026-05-29T00:00:00Z",
"revision_history": [
{
"date": "2026-05-29T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "python311-dulwich-1.2.5-1.1.aarch64",
"product": {
"name": "python311-dulwich-1.2.5-1.1.aarch64",
"product_id": "python311-dulwich-1.2.5-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-dulwich-1.2.5-1.1.aarch64",
"product": {
"name": "python313-dulwich-1.2.5-1.1.aarch64",
"product_id": "python313-dulwich-1.2.5-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python314-dulwich-1.2.5-1.1.aarch64",
"product": {
"name": "python314-dulwich-1.2.5-1.1.aarch64",
"product_id": "python314-dulwich-1.2.5-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python311-dulwich-1.2.5-1.1.ppc64le",
"product": {
"name": "python311-dulwich-1.2.5-1.1.ppc64le",
"product_id": "python311-dulwich-1.2.5-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-dulwich-1.2.5-1.1.ppc64le",
"product": {
"name": "python313-dulwich-1.2.5-1.1.ppc64le",
"product_id": "python313-dulwich-1.2.5-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python314-dulwich-1.2.5-1.1.ppc64le",
"product": {
"name": "python314-dulwich-1.2.5-1.1.ppc64le",
"product_id": "python314-dulwich-1.2.5-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python311-dulwich-1.2.5-1.1.s390x",
"product": {
"name": "python311-dulwich-1.2.5-1.1.s390x",
"product_id": "python311-dulwich-1.2.5-1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-dulwich-1.2.5-1.1.s390x",
"product": {
"name": "python313-dulwich-1.2.5-1.1.s390x",
"product_id": "python313-dulwich-1.2.5-1.1.s390x"
}
},
{
"category": "product_version",
"name": "python314-dulwich-1.2.5-1.1.s390x",
"product": {
"name": "python314-dulwich-1.2.5-1.1.s390x",
"product_id": "python314-dulwich-1.2.5-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "python311-dulwich-1.2.5-1.1.x86_64",
"product": {
"name": "python311-dulwich-1.2.5-1.1.x86_64",
"product_id": "python311-dulwich-1.2.5-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-dulwich-1.2.5-1.1.x86_64",
"product": {
"name": "python313-dulwich-1.2.5-1.1.x86_64",
"product_id": "python313-dulwich-1.2.5-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python314-dulwich-1.2.5-1.1.x86_64",
"product": {
"name": "python314-dulwich-1.2.5-1.1.x86_64",
"product_id": "python314-dulwich-1.2.5-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-dulwich-1.2.5-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64"
},
"product_reference": "python311-dulwich-1.2.5-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-dulwich-1.2.5-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le"
},
"product_reference": "python311-dulwich-1.2.5-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-dulwich-1.2.5-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x"
},
"product_reference": "python311-dulwich-1.2.5-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-dulwich-1.2.5-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64"
},
"product_reference": "python311-dulwich-1.2.5-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dulwich-1.2.5-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64"
},
"product_reference": "python313-dulwich-1.2.5-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dulwich-1.2.5-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le"
},
"product_reference": "python313-dulwich-1.2.5-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dulwich-1.2.5-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x"
},
"product_reference": "python313-dulwich-1.2.5-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-dulwich-1.2.5-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64"
},
"product_reference": "python313-dulwich-1.2.5-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-dulwich-1.2.5-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64"
},
"product_reference": "python314-dulwich-1.2.5-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-dulwich-1.2.5-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le"
},
"product_reference": "python314-dulwich-1.2.5-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-dulwich-1.2.5-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x"
},
"product_reference": "python314-dulwich-1.2.5-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-dulwich-1.2.5-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
},
"product_reference": "python314-dulwich-1.2.5-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-42305",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42305"
}
],
"notes": [
{
"category": "general",
"text": "unknown",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42305",
"url": "https://www.suse.com/security/cve/CVE-2026-42305"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-05-29T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-42305"
},
{
"cve": "CVE-2026-42563",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-42563"
}
],
"notes": [
{
"category": "general",
"text": "unknown",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-42563",
"url": "https://www.suse.com/security/cve/CVE-2026-42563"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-05-29T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-42563"
},
{
"cve": "CVE-2026-47712",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-47712"
}
],
"notes": [
{
"category": "general",
"text": "unknown",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-47712",
"url": "https://www.suse.com/security/cve/CVE-2026-47712"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python311-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python313-dulwich-1.2.5-1.1.x86_64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.aarch64",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.ppc64le",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.s390x",
"openSUSE Tumbleweed:python314-dulwich-1.2.5-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-05-29T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-47712"
}
]
}
PYSEC-2026-2462
Vulnerability from pysec - Published: 2026-07-13 15:46 - Updated: 2026-07-13 16:03Impact
dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit's subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, ), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f"{i:04d}-{summary}.patch").
A malicious commit subject could therefore direct the generated patch file outside the requested outdir. Reduced examples:
- x/../../x produced /0001-x/../../x.patch, resolving two directories above outdir.
- x....\x produced the equivalent escape on Windows, here \ is also a path separator.
Related issues from the same root cause:
- Subjects containing characters that are illegal in Windows filenames (e.g. :) caused format_patch to fail outright on Windows, where git would have succeeded.
- Very long subjects produced excessively long filenames that could exceed filesystem limits; git truncates them.
Anyone calling porcelain.format_patch (or the dulwich format-patch CLI) against untrusted commits - for example, a service that runs format-patch over user-supplied repositories or pull requests - could have patch files written to attacker-chosen locations within the process's write permissions.
Patches
Fixed in Dulwich 1.2.5. Users should upgrade.
dulwich.patch.get_summary now mirrors git's format_sanitized_subject: only [A-Za-z0-9._] are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject.
Workarounds
Until upgrading, callers that pass untrusted commits to porcelain.format_patch can:
- Use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename.
- Validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir.
- Pre-screen commits and refuse to format any whose subject's first line contains /, \, .., or other characters that are not safe on the target filesystem.
Resources
- Fix commit: https://github.com/jelmer/dulwich/commit/c2446e51b
- Affected API: dulwich.porcelain.format_patch / dulwich format-patch
- Reference behavior: git's format_sanitized_subject in pretty.c
| Name | purl | dulwich | pkg:pypi/dulwich |
|---|
{
"affected": [
{
"package": {
"ecosystem": "PyPI",
"name": "dulwich",
"purl": "pkg:pypi/dulwich"
},
"ranges": [
{
"events": [
{
"introduced": "0.24.0"
},
{
"fixed": "1.2.5"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.24.0",
"0.24.1",
"0.24.10",
"0.24.2",
"0.24.3",
"0.24.4",
"0.24.5",
"0.24.6",
"0.24.7",
"0.24.8",
"0.24.9",
"0.25.0",
"0.25.1",
"0.25.2",
"1.0.0",
"1.1.0",
"1.2.0",
"1.2.1",
"1.2.2",
"1.2.3",
"1.2.4"
]
}
],
"aliases": [
"CVE-2026-47712",
"GHSA-555p-6grf-mh7f"
],
"details": "### Impact\n\ndulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\"{i:04d}-{summary}.patch\").\n\nA malicious commit subject could therefore direct the generated patch file outside the requested outdir. Reduced examples:\n\n- x/../../x produced \u003coutdir\u003e/0001-x/../../x.patch, resolving\n two directories above outdir.\n- x\\..\\..\\x produced the equivalent escape on Windows, here \\ is also a path separator.\n\nRelated issues from the same root cause:\n\n- Subjects containing characters that are illegal in Windows filenames (e.g. :) caused format_patch to fail outright on Windows, where git would have succeeded.\n- Very long subjects produced excessively long filenames that could exceed filesystem limits; git truncates them.\n\nAnyone calling porcelain.format_patch (or the dulwich format-patch CLI) against untrusted commits - for example, a service that runs format-patch over user-supplied repositories or pull requests - could have patch files written to attacker-chosen locations within the process\u0027s write permissions.\n\n### Patches\n\nFixed in Dulwich 1.2.5. Users should upgrade.\n\n dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject.\n\n### Workarounds\n\nUntil upgrading, callers that pass untrusted commits to porcelain.format_patch can:\n\n- Use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename.\n- Validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir.\n- Pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\, .., or other characters that are not safe on the target filesystem.\n\n### Resources\n\n- Fix commit: https://github.com/jelmer/dulwich/commit/c2446e51b\n- Affected API: dulwich.porcelain.format_patch / dulwich format-patch\n- Reference behavior: git\u0027s format_sanitized_subject in pretty.c",
"id": "PYSEC-2026-2462",
"modified": "2026-07-13T16:03:57.395315Z",
"published": "2026-07-13T15:46:15.563670Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47712"
},
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/commit/c2446e51b"
},
{
"type": "PACKAGE",
"url": "https://github.com/jelmer/dulwich"
},
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5"
},
{
"type": "PACKAGE",
"url": "https://pypi.org/project/dulwich"
},
{
"type": "ADVISORY",
"url": "https://github.com/advisories/GHSA-555p-6grf-mh7f"
}
],
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"type": "CVSS_V3"
}
],
"summary": "Dulwich doesn\u0027t sanitize commit subjects in `porcelain.format_patch`"
}
ubuntu-cve-2026-47712
Vulnerability from osv_ubuntu
Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.24.0 and prior to version 1.2.5, dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit's subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, ), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f"{i:04d}-{summary}.patch"). A malicious commit subject could therefore direct the generated patch file outside the requested outdir. This is fixed in Dulwich 1.2.5. Users should upgrade to 1.2.5 or later. dulwich.patch.get_summary now mirrors git's format_sanitized_subject: only [A-Za-z0-9._] are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject. Until upgrading, callers that pass untrusted commits to porcelain.format_patch can use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename; validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir; and/or pre-screen commits and refuse to format any whose subject's first line contains /, \, .., or other characters that are not safe on the target filesystem.
{
"affected": [
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "pypy-dulwich",
"binary_version": "0.12.0-1build2"
},
{
"binary_name": "python-dulwich",
"binary_version": "0.12.0-1build2"
},
{
"binary_name": "python3-dulwich",
"binary_version": "0.12.0-1build2"
}
]
},
"package": {
"ecosystem": "Ubuntu:16.04:LTS",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@0.12.0-1build2?arch=source\u0026distro=xenial"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.11.2-1ubuntu1",
"0.12.0-1",
"0.12.0-1build1",
"0.12.0-1build2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "pypy-dulwich",
"binary_version": "0.18.5-1"
},
{
"binary_name": "python-dulwich",
"binary_version": "0.18.5-1"
},
{
"binary_name": "python3-dulwich",
"binary_version": "0.18.5-1"
}
]
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@0.18.5-1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.18.2-1build1",
"0.18.5-1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "pypy-dulwich",
"binary_version": "0.19.15-1build1"
},
{
"binary_name": "python3-dulwich",
"binary_version": "0.19.15-1build1"
}
]
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@0.19.15-1build1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.19.11-2",
"0.19.14-4ubuntu1",
"0.19.15-1",
"0.19.15-1build1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "python3-dulwich",
"binary_version": "0.20.31-1.1build1"
}
]
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@0.20.31-1.1build1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.20.15-1ubuntu1",
"0.20.31-1ubuntu1",
"0.20.31-1.1",
"0.20.31-1.1build1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "python3-dulwich",
"binary_version": "0.21.6-1build2"
}
]
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@0.21.6-1build2?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.21.6-1",
"0.21.6-1build1",
"0.21.6-1build2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "python3-dulwich",
"binary_version": "0.22.7-1"
}
]
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@0.22.7-1?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.22.7-1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "python3-dulwich",
"binary_version": "1.1.0-3"
}
]
},
"package": {
"ecosystem": "Ubuntu:26.04:LTS",
"name": "dulwich",
"purl": "pkg:deb/ubuntu/dulwich@1.1.0-3?arch=source\u0026distro=resolute"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.22.7-1",
"0.24.2-2",
"1.1.0-2ubuntu1",
"1.1.0-3"
]
}
],
"aliases": [],
"details": "Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.24.0 and prior to version 1.2.5, dulwich.porcelain.format_patch(outdir=...) derives each patch filename from the commit\u0027s subject line. Prior to this fix, get_summary only replaced spaces with dashes - path separators (/, \\), parent-directory components (..), and other filename-hostile characters (e.g. :) were preserved verbatim and passed straight into os.path.join(outdir, f\"{i:04d}-{summary}.patch\"). A malicious commit subject could therefore direct the generated patch file outside the requested outdir. This is fixed in Dulwich 1.2.5. Users should upgrade to 1.2.5 or later. dulwich.patch.get_summary now mirrors git\u0027s format_sanitized_subject: only `[A-Za-z0-9._]` are kept, runs of other characters collapse to a single -, consecutive . collapse to a single ., trailing ./- are stripped, and the result is length-limited. This makes the returned string safe to embed as a filename component, so format_patch can no longer be steered out of outdir via the commit subject. Until upgrading, callers that pass untrusted commits to porcelain.format_patch can use stdout=True and write the patch to a destination they control, rather than letting format_patch choose the filename; validate the chosen path before opening - e.g. compare os.path.realpath(returned_path) against os.path.realpath(outdir) and reject any patch whose resolved path is not inside outdir; and/or pre-screen commits and refuse to format any whose subject\u0027s first line contains /, \\, .., or other characters that are not safe on the target filesystem.",
"id": "UBUNTU-CVE-2026-47712",
"modified": "2026-06-17T04:30:53Z",
"published": "2026-06-10T23:16:00Z",
"references": [
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2026-47712"
},
{
"type": "REPORT",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47712"
},
{
"type": "REPORT",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-555p-6grf-mh7f"
}
],
"related": [],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"type": "CVSS_V3"
},
{
"score": "medium",
"type": "Ubuntu"
}
],
"upstream": [
"CVE-2026-47712"
]
}
WID-SEC-W-2026-2455
Vulnerability from csaf_certbund - Published: 2026-07-21 22:00 - Updated: 2026-08-10 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Oracle Solaris <11.4 SRU 94
Oracle / Solaris
|
<11.4 SRU 94 | ||
|
Oracle Solaris <11.3 ESU 36.36
Oracle / Solaris
|
<11.3 ESU 36.36 | ||
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— |
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Oracle Solaris ist ein Betriebssystem von Oracle f\u00fcr Server und Workstations.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in verschiedenen Komponenten von Drittanbietern in Oracle Solaris ausnutzen, um einen nicht n\u00e4her spezifizierten Angriff durchzuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- UNIX",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-2455 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-2455.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-2455 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-2455"
},
{
"category": "external",
"summary": "Solaris Third Party Bulletin - July 2026 vom 2026-07-21",
"url": "https://www.oracle.com/security-alerts/bulletinjul2026.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-46395 vom 2026-07-28",
"url": "https://linux.oracle.com/errata/ELSA-2026-46395.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:3459-1 vom 2026-08-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-August/028105.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:52857 vom 2026-08-10",
"url": "https://access.redhat.com/errata/RHSA-2026:52857"
}
],
"source_lang": "en-US",
"title": "Oracle Solaris Drittanbieterkomponenten: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-08-10T22:00:00.000+00:00",
"generator": {
"date": "2026-08-11T08:56:43.912+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-2455",
"initial_release_date": "2026-07-21T22:00:00.000+00:00",
"revision_history": [
{
"date": "2026-07-21T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-07-27T22:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-08-03T22:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-08-10T22:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Red Hat aufgenommen"
}
],
"status": "final",
"version": "4"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Oracle Linux",
"product": {
"name": "Oracle Linux",
"product_id": "T056236",
"product_identification_helper": {
"cpe": "cpe:/o:oracle:linux:-"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c11.4 SRU 94",
"product": {
"name": "Oracle Solaris \u003c11.4 SRU 94",
"product_id": "T056998"
}
},
{
"category": "product_version",
"name": "11.4 SRU 94",
"product": {
"name": "Oracle Solaris 11.4 SRU 94",
"product_id": "T056998-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:solaris:11.4:sru_94"
}
}
},
{
"category": "product_version_range",
"name": "\u003c11.3 ESU 36.36",
"product": {
"name": "Oracle Solaris \u003c11.3 ESU 36.36",
"product_id": "T056999"
}
},
{
"category": "product_version",
"name": "11.3 ESU 36.36",
"product": {
"name": "Oracle Solaris 11.3 ESU 36.36",
"product_id": "T056999-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:oracle:solaris:11.3:esu_36.36"
}
}
}
],
"category": "product_name",
"name": "Solaris"
}
],
"category": "vendor",
"name": "Oracle"
},
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
}
],
"category": "vendor",
"name": "Red Hat"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux",
"product": {
"name": "SUSE Linux",
"product_id": "T054646",
"product_identification_helper": {
"cpe": "cpe:/o:suse:suse_linux:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2021-4189",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2021-4189"
},
{
"cve": "CVE-2025-14179",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2025-14179"
},
{
"cve": "CVE-2025-26597",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2025-26597"
},
{
"cve": "CVE-2026-1502",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-1502"
},
{
"cve": "CVE-2026-21998",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-21998"
},
{
"cve": "CVE-2026-22001",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22001"
},
{
"cve": "CVE-2026-22002",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22002"
},
{
"cve": "CVE-2026-22004",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22004"
},
{
"cve": "CVE-2026-22005",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22005"
},
{
"cve": "CVE-2026-22009",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22009"
},
{
"cve": "CVE-2026-22015",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22015"
},
{
"cve": "CVE-2026-22017",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-22017"
},
{
"cve": "CVE-2026-29167",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-29167"
},
{
"cve": "CVE-2026-29170",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-29170"
},
{
"cve": "CVE-2026-29518",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-29518"
},
{
"cve": "CVE-2026-3219",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-3219"
},
{
"cve": "CVE-2026-32792",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-32792"
},
{
"cve": "CVE-2026-33278",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-33278"
},
{
"cve": "CVE-2026-33811",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-33811"
},
{
"cve": "CVE-2026-33814",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-33814"
},
{
"cve": "CVE-2026-33999",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-33999"
},
{
"cve": "CVE-2026-34000",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34000"
},
{
"cve": "CVE-2026-34001",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34001"
},
{
"cve": "CVE-2026-34002",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34002"
},
{
"cve": "CVE-2026-34003",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34003"
},
{
"cve": "CVE-2026-34180",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34180"
},
{
"cve": "CVE-2026-34181",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34181"
},
{
"cve": "CVE-2026-34182",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34182"
},
{
"cve": "CVE-2026-34183",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34183"
},
{
"cve": "CVE-2026-34267",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34267"
},
{
"cve": "CVE-2026-34270",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34270"
},
{
"cve": "CVE-2026-34271",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34271"
},
{
"cve": "CVE-2026-34276",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34276"
},
{
"cve": "CVE-2026-34278",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34278"
},
{
"cve": "CVE-2026-34293",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34293"
},
{
"cve": "CVE-2026-34303",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34303"
},
{
"cve": "CVE-2026-34304",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34304"
},
{
"cve": "CVE-2026-34308",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34308"
},
{
"cve": "CVE-2026-34355",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34355"
},
{
"cve": "CVE-2026-34356",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-34356"
},
{
"cve": "CVE-2026-35188",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-35188"
},
{
"cve": "CVE-2026-35236",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-35236"
},
{
"cve": "CVE-2026-35237",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-35237"
},
{
"cve": "CVE-2026-35238",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-35238"
},
{
"cve": "CVE-2026-35239",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-35239"
},
{
"cve": "CVE-2026-35240",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-35240"
},
{
"cve": "CVE-2026-38974",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-38974"
},
{
"cve": "CVE-2026-39817",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39817"
},
{
"cve": "CVE-2026-39819",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39819"
},
{
"cve": "CVE-2026-39820",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39820"
},
{
"cve": "CVE-2026-39821",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39821"
},
{
"cve": "CVE-2026-39823",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39823"
},
{
"cve": "CVE-2026-39825",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39825"
},
{
"cve": "CVE-2026-39826",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39826"
},
{
"cve": "CVE-2026-39836",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-39836"
},
{
"cve": "CVE-2026-40192",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-40192"
},
{
"cve": "CVE-2026-40622",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-40622"
},
{
"cve": "CVE-2026-41284",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-41284"
},
{
"cve": "CVE-2026-41292",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-41292"
},
{
"cve": "CVE-2026-41293",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-41293"
},
{
"cve": "CVE-2026-41316",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-41316"
},
{
"cve": "CVE-2026-42304",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42304"
},
{
"cve": "CVE-2026-42305",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42305"
},
{
"cve": "CVE-2026-42308",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42308"
},
{
"cve": "CVE-2026-42309",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42309"
},
{
"cve": "CVE-2026-42310",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42310"
},
{
"cve": "CVE-2026-42311",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42311"
},
{
"cve": "CVE-2026-42371",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42371"
},
{
"cve": "CVE-2026-42498",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42498"
},
{
"cve": "CVE-2026-42499",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42499"
},
{
"cve": "CVE-2026-42501",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42501"
},
{
"cve": "CVE-2026-42534",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42534"
},
{
"cve": "CVE-2026-42535",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42535"
},
{
"cve": "CVE-2026-42536",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42536"
},
{
"cve": "CVE-2026-42563",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42563"
},
{
"cve": "CVE-2026-42764",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42764"
},
{
"cve": "CVE-2026-42765",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42765"
},
{
"cve": "CVE-2026-42766",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42766"
},
{
"cve": "CVE-2026-42767",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42767"
},
{
"cve": "CVE-2026-42768",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42768"
},
{
"cve": "CVE-2026-42769",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42769"
},
{
"cve": "CVE-2026-42770",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42770"
},
{
"cve": "CVE-2026-42771",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42771"
},
{
"cve": "CVE-2026-42923",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42923"
},
{
"cve": "CVE-2026-42944",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42944"
},
{
"cve": "CVE-2026-42959",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42959"
},
{
"cve": "CVE-2026-42960",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-42960"
},
{
"cve": "CVE-2026-43512",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43512"
},
{
"cve": "CVE-2026-43513",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43513"
},
{
"cve": "CVE-2026-43514",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43514"
},
{
"cve": "CVE-2026-43515",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43515"
},
{
"cve": "CVE-2026-43617",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43617"
},
{
"cve": "CVE-2026-43618",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43618"
},
{
"cve": "CVE-2026-43619",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43619"
},
{
"cve": "CVE-2026-43620",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43620"
},
{
"cve": "CVE-2026-43951",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-43951"
},
{
"cve": "CVE-2026-44119",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44119"
},
{
"cve": "CVE-2026-44185",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44185"
},
{
"cve": "CVE-2026-44186",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44186"
},
{
"cve": "CVE-2026-44390",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44390"
},
{
"cve": "CVE-2026-44431",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44431"
},
{
"cve": "CVE-2026-44432",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44432"
},
{
"cve": "CVE-2026-44608",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44608"
},
{
"cve": "CVE-2026-44631",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-44631"
},
{
"cve": "CVE-2026-4519",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-4519"
},
{
"cve": "CVE-2026-45232",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-45232"
},
{
"cve": "CVE-2026-45445",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-45445"
},
{
"cve": "CVE-2026-45446",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-45446"
},
{
"cve": "CVE-2026-45447",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-45447"
},
{
"cve": "CVE-2026-46529",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-46529"
},
{
"cve": "CVE-2026-47712",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-47712"
},
{
"cve": "CVE-2026-47734",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-47734"
},
{
"cve": "CVE-2026-4786",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-4786"
},
{
"cve": "CVE-2026-48913",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-48913"
},
{
"cve": "CVE-2026-49975",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-49975"
},
{
"cve": "CVE-2026-50256",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50256"
},
{
"cve": "CVE-2026-50257",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50257"
},
{
"cve": "CVE-2026-50258",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50258"
},
{
"cve": "CVE-2026-50259",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50259"
},
{
"cve": "CVE-2026-50260",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50260"
},
{
"cve": "CVE-2026-50261",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50261"
},
{
"cve": "CVE-2026-50262",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50262"
},
{
"cve": "CVE-2026-50263",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50263"
},
{
"cve": "CVE-2026-50264",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-50264"
},
{
"cve": "CVE-2026-5299",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5299"
},
{
"cve": "CVE-2026-5401",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5401"
},
{
"cve": "CVE-2026-5402",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5402"
},
{
"cve": "CVE-2026-5403",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5403"
},
{
"cve": "CVE-2026-5404",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5404"
},
{
"cve": "CVE-2026-5405",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5405"
},
{
"cve": "CVE-2026-5406",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5406"
},
{
"cve": "CVE-2026-5407",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5407"
},
{
"cve": "CVE-2026-5408",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5408"
},
{
"cve": "CVE-2026-5409",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5409"
},
{
"cve": "CVE-2026-5653",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5653"
},
{
"cve": "CVE-2026-5654",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5654"
},
{
"cve": "CVE-2026-5655",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5655"
},
{
"cve": "CVE-2026-5656",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5656"
},
{
"cve": "CVE-2026-5657",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5657"
},
{
"cve": "CVE-2026-5731",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5731"
},
{
"cve": "CVE-2026-5732",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5732"
},
{
"cve": "CVE-2026-5734",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-5734"
},
{
"cve": "CVE-2026-6019",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6019"
},
{
"cve": "CVE-2026-6100",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6100"
},
{
"cve": "CVE-2026-6104",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6104"
},
{
"cve": "CVE-2026-6357",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6357"
},
{
"cve": "CVE-2026-6519",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6519"
},
{
"cve": "CVE-2026-6520",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6520"
},
{
"cve": "CVE-2026-6521",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6521"
},
{
"cve": "CVE-2026-6522",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6522"
},
{
"cve": "CVE-2026-6523",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6523"
},
{
"cve": "CVE-2026-6524",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6524"
},
{
"cve": "CVE-2026-6525",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6525"
},
{
"cve": "CVE-2026-6526",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6526"
},
{
"cve": "CVE-2026-6527",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6527"
},
{
"cve": "CVE-2026-6528",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6528"
},
{
"cve": "CVE-2026-6529",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6529"
},
{
"cve": "CVE-2026-6530",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6530"
},
{
"cve": "CVE-2026-6531",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6531"
},
{
"cve": "CVE-2026-6532",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6532"
},
{
"cve": "CVE-2026-6533",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6533"
},
{
"cve": "CVE-2026-6534",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6534"
},
{
"cve": "CVE-2026-6535",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6535"
},
{
"cve": "CVE-2026-6536",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6536"
},
{
"cve": "CVE-2026-6537",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6537"
},
{
"cve": "CVE-2026-6538",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6538"
},
{
"cve": "CVE-2026-6722",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6722"
},
{
"cve": "CVE-2026-6735",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6735"
},
{
"cve": "CVE-2026-6746",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6746"
},
{
"cve": "CVE-2026-6747",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6747"
},
{
"cve": "CVE-2026-6748",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6748"
},
{
"cve": "CVE-2026-6749",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6749"
},
{
"cve": "CVE-2026-6750",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6750"
},
{
"cve": "CVE-2026-6751",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6751"
},
{
"cve": "CVE-2026-6752",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6752"
},
{
"cve": "CVE-2026-6753",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6753"
},
{
"cve": "CVE-2026-6754",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6754"
},
{
"cve": "CVE-2026-6757",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6757"
},
{
"cve": "CVE-2026-6759",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6759"
},
{
"cve": "CVE-2026-6761",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6761"
},
{
"cve": "CVE-2026-6762",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6762"
},
{
"cve": "CVE-2026-6763",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6763"
},
{
"cve": "CVE-2026-6764",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6764"
},
{
"cve": "CVE-2026-6765",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6765"
},
{
"cve": "CVE-2026-6766",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6766"
},
{
"cve": "CVE-2026-6767",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6767"
},
{
"cve": "CVE-2026-6769",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6769"
},
{
"cve": "CVE-2026-6770",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6770"
},
{
"cve": "CVE-2026-6771",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6771"
},
{
"cve": "CVE-2026-6772",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6772"
},
{
"cve": "CVE-2026-6776",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6776"
},
{
"cve": "CVE-2026-6785",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6785"
},
{
"cve": "CVE-2026-6786",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6786"
},
{
"cve": "CVE-2026-6867",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6867"
},
{
"cve": "CVE-2026-6868",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6868"
},
{
"cve": "CVE-2026-6869",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6869"
},
{
"cve": "CVE-2026-6870",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-6870"
},
{
"cve": "CVE-2026-7258",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7258"
},
{
"cve": "CVE-2026-7259",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7259"
},
{
"cve": "CVE-2026-7261",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7261"
},
{
"cve": "CVE-2026-7262",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7262"
},
{
"cve": "CVE-2026-7263",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7263"
},
{
"cve": "CVE-2026-7320",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7320"
},
{
"cve": "CVE-2026-7321",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7321"
},
{
"cve": "CVE-2026-7322",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7322"
},
{
"cve": "CVE-2026-7323",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7323"
},
{
"cve": "CVE-2026-7375",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7375"
},
{
"cve": "CVE-2026-7376",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7376"
},
{
"cve": "CVE-2026-7378",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7378"
},
{
"cve": "CVE-2026-7379",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7379"
},
{
"cve": "CVE-2026-7383",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7383"
},
{
"cve": "CVE-2026-7568",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-7568"
},
{
"cve": "CVE-2026-8090",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8090"
},
{
"cve": "CVE-2026-8091",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8091"
},
{
"cve": "CVE-2026-8092",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8092"
},
{
"cve": "CVE-2026-8094",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8094"
},
{
"cve": "CVE-2026-8328",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8328"
},
{
"cve": "CVE-2026-8388",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8388"
},
{
"cve": "CVE-2026-8391",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8391"
},
{
"cve": "CVE-2026-8401",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8401"
},
{
"cve": "CVE-2026-8643",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8643"
},
{
"cve": "CVE-2026-8946",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8946"
},
{
"cve": "CVE-2026-8947",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8947"
},
{
"cve": "CVE-2026-8949",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8949"
},
{
"cve": "CVE-2026-8950",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8950"
},
{
"cve": "CVE-2026-8953",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8953"
},
{
"cve": "CVE-2026-8954",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8954"
},
{
"cve": "CVE-2026-8955",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8955"
},
{
"cve": "CVE-2026-8956",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8956"
},
{
"cve": "CVE-2026-8957",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8957"
},
{
"cve": "CVE-2026-8958",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8958"
},
{
"cve": "CVE-2026-8959",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8959"
},
{
"cve": "CVE-2026-8961",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8961"
},
{
"cve": "CVE-2026-8962",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8962"
},
{
"cve": "CVE-2026-8968",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8968"
},
{
"cve": "CVE-2026-8970",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8970"
},
{
"cve": "CVE-2026-8974",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8974"
},
{
"cve": "CVE-2026-8975",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-8975"
},
{
"cve": "CVE-2026-9076",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-9076"
},
{
"cve": "CVE-2026-9759",
"product_status": {
"known_affected": [
"T056236",
"T056998",
"T056999",
"67646",
"T054646"
]
},
"release_date": "2026-07-21T22:00:00.000+00:00",
"title": "CVE-2026-9759"
}
]
}
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.