Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-47734 (GCVE-0-2026-47734)
Vulnerability from cvelistv5 – Published: 2026-06-10 22:11 – Updated: 2026-06-11 16:14| URL | Tags |
|---|---|
| https://github.com/jelmer/dulwich/security/adviso… | x_refsource_CONFIRM |
| https://github.com/jelmer/dulwich/releases/tag/du… | x_refsource_MISC |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-47734",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-06-11T14:08:10.796596Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-06-11T16:14:16.785Z",
"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.1.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.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-400",
"description": "CWE-400: Uncontrolled Resource Consumption",
"lang": "en",
"type": "CWE"
}
]
},
{
"descriptions": [
{
"cweId": "CWE-789",
"description": "CWE-789: Memory Allocation with Excessive Size Value",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-06-10T22:11:02.704Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj"
},
{
"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-xrvj-v92f-53gj",
"discovery": "UNKNOWN"
},
"title": "Dulwich has unbounded memory allocation in receive-pack from crafted thin packs"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-47734",
"datePublished": "2026-06-10T22:11:02.704Z",
"dateReserved": "2026-05-19T22:16:39.503Z",
"dateUpdated": "2026-06-11T16:14:16.785Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-47734",
"date": "2026-08-11",
"epss": "0.00188",
"percentile": "0.08655"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-47734\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-06-10T23:16:48.807\",\"lastModified\":\"2026-07-23T09:10:00.113\",\"vulnStatus\":\"Deferred\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.\"},{\"lang\":\"es\",\"value\":\"Dulwich es una implementaci\u00f3n pura de Python de los formatos de archivo y protocolos de Git. A partir de la versi\u00f3n 0.1.0 y antes de la versi\u00f3n 1.2.5, un cliente con acceso de push podr\u00eda enviar un paquete delgado (\u0027thin pack\u0027) peque\u00f1o y manipulado (~174 bytes) cuyo encabezado delta declara un \u0027dest_size\u0027 enorme. Cuando Dulwich lo inger\u00eda a trav\u00e9s de \u0027add_thin_pack\u0027 / \u0027apply_delta\u0027, asignar\u00eda cientos de MB de memoria bas\u00e1ndose en ese tama\u00f1o controlado por el atacante, sin relaci\u00f3n con los bytes reales recibidos. Los operadores que ejecutan un servidor Git basado en Dulwich que expone \u0027git-receive-pack\u0027 (es decir, acepta \u0027pushes\u0027) - por ejemplo, a trav\u00e9s de la funcionalidad \u0027dulwich.server\u0027, el \u0027smart server\u0027 HTTP, o cualquier cosa construida sobre \u0027ReceivePackHandler\u0027 - se ven afectados. El problema est\u00e1 parcheado en la versi\u00f3n 1.2.5. \u0027add_thin_pack\u0027 ahora acepta una palabra clave \u0027max_input_size\u0027 (bytes; 0/None = ilimitado, coincidiendo con la sem\u00e1ntica de Git), y \u0027ReceivePackHandler\u0027 lee \u0027receive.maxInputSize\u0027 de la configuraci\u00f3n del repositorio y lo pasa. Las lecturas de la red (\u0027wire reads\u0027) se cuentan y se lanza una excepci\u00f3n \u0027PackInputTooLarge\u0027 una vez que se excede el l\u00edmite - equivalente a \u0027git index-pack --max-input-size\u0027. Los usuarios deben actualizar a Dulwich 1.2.5 o posterior y establecer \u0027receive.maxInputSize\u0027 en la configuraci\u00f3n del repositorio de su servidor a un l\u00edmite razonable para su entorno. En versiones sin parchear, \u0027receive.maxInputSize\u0027 no tiene efecto, por lo que no puede usarse como una soluci\u00f3n alternativa. Hasta la actualizaci\u00f3n, los operadores deben restringir el acceso a \u0027dulwich-receive-pack\u0027 (\u0027push\u0027) solo a clientes confiables y autenticados, o deshabilitarlo por completo en servidores que solo necesitan servir \u0027fetches\u0027 y/o ejecutar el servidor bajo un l\u00edmite de memoria a nivel de sistema operativo (por ejemplo, \u0027ulimit\u0027, \u0027cgroups/MemoryMax\u0027, o un l\u00edmite de memoria de contenedor) para que un \u0027push\u0027 malicioso sea terminado en lugar de derribar el host.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"jelmer\",\"product\":\"dulwich\",\"versions\":[{\"version\":\"\u003e= 0.1.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:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H\",\"baseScore\":5.7,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"REQUIRED\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":2.1,\"impactScore\":3.6}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-06-11T14:08:10.796596Z\",\"id\":\"CVE-2026-47734\",\"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-400\"},{\"lang\":\"en\",\"value\":\"CWE-789\"}]}],\"references\":[{\"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-xrvj-v92f-53gj\",\"source\":\"security-advisories@github.com\"}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-07-04T11:14:09+00:00",
"cve": "CVE-2026-47734",
"id": "CVE-2026-47734",
"initial_release_date": "2026-06-10T22:11:02.704000+00:00",
"product_status:known_affected": "24",
"product_status:under_investigation": "1",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "dulwich: Dulwich: Denial of Service via crafted Git thin pack",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-47734.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "moderate",
"current_release_date": "2026-07-15T05:06:39Z",
"cve": "CVE-2026-47734",
"id": "CVE-2026-47734",
"initial_release_date": "2026-06-12T02:25:25Z",
"product_status:first_fixed": "10",
"product_status:known_affected": "21",
"product_status:recommended": "6",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2026-47734",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-47734.json",
"version": "4"
},
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-47734\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-06-11T14:08:10.796596Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-06-11T14:40:15.611Z\"}}], \"cna\": {\"title\": \"Dulwich has unbounded memory allocation in receive-pack from crafted thin packs\", \"source\": {\"advisory\": \"GHSA-xrvj-v92f-53gj\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 5.7, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"MEDIUM\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"REQUIRED\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"privilegesRequired\": \"LOW\", \"confidentialityImpact\": \"NONE\"}}], \"affected\": [{\"vendor\": \"jelmer\", \"product\": \"dulwich\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003e= 0.1.0, \u003c 1.2.5\"}]}], \"references\": [{\"url\": \"https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj\", \"name\": \"https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj\", \"tags\": [\"x_refsource_CONFIRM\"]}, {\"url\": \"https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5\", \"name\": \"https://github.com/jelmer/dulwich/releases/tag/dulwich-1.2.5\", \"tags\": [\"x_refsource_MISC\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-400\", \"description\": \"CWE-400: Uncontrolled Resource Consumption\"}]}, {\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-789\", \"description\": \"CWE-789: Memory Allocation with Excessive Size Value\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-06-10T22:11:02.704Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-47734\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-06-11T16:14:16.785Z\", \"dateReserved\": \"2026-05-19T22:16:39.503Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-06-10T22:11:02.704Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
FKIE_CVE-2026-47734
Vulnerability from fkie_nvd - Published: 2026-06-10 23:16 - Updated: 2026-07-23 09:10| Vendor | Product | Version |
|---|
{
"affected": [
{
"affectedData": [
{
"product": "dulwich",
"vendor": "jelmer",
"versions": [
{
"status": "affected",
"version": "\u003e= 0.1.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.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host."
},
{
"lang": "es",
"value": "Dulwich es una implementaci\u00f3n pura de Python de los formatos de archivo y protocolos de Git. A partir de la versi\u00f3n 0.1.0 y antes de la versi\u00f3n 1.2.5, un cliente con acceso de push podr\u00eda enviar un paquete delgado (\u0027thin pack\u0027) peque\u00f1o y manipulado (~174 bytes) cuyo encabezado delta declara un \u0027dest_size\u0027 enorme. Cuando Dulwich lo inger\u00eda a trav\u00e9s de \u0027add_thin_pack\u0027 / \u0027apply_delta\u0027, asignar\u00eda cientos de MB de memoria bas\u00e1ndose en ese tama\u00f1o controlado por el atacante, sin relaci\u00f3n con los bytes reales recibidos. Los operadores que ejecutan un servidor Git basado en Dulwich que expone \u0027git-receive-pack\u0027 (es decir, acepta \u0027pushes\u0027) - por ejemplo, a trav\u00e9s de la funcionalidad \u0027dulwich.server\u0027, el \u0027smart server\u0027 HTTP, o cualquier cosa construida sobre \u0027ReceivePackHandler\u0027 - se ven afectados. El problema est\u00e1 parcheado en la versi\u00f3n 1.2.5. \u0027add_thin_pack\u0027 ahora acepta una palabra clave \u0027max_input_size\u0027 (bytes; 0/None = ilimitado, coincidiendo con la sem\u00e1ntica de Git), y \u0027ReceivePackHandler\u0027 lee \u0027receive.maxInputSize\u0027 de la configuraci\u00f3n del repositorio y lo pasa. Las lecturas de la red (\u0027wire reads\u0027) se cuentan y se lanza una excepci\u00f3n \u0027PackInputTooLarge\u0027 una vez que se excede el l\u00edmite - equivalente a \u0027git index-pack --max-input-size\u0027. Los usuarios deben actualizar a Dulwich 1.2.5 o posterior y establecer \u0027receive.maxInputSize\u0027 en la configuraci\u00f3n del repositorio de su servidor a un l\u00edmite razonable para su entorno. En versiones sin parchear, \u0027receive.maxInputSize\u0027 no tiene efecto, por lo que no puede usarse como una soluci\u00f3n alternativa. Hasta la actualizaci\u00f3n, los operadores deben restringir el acceso a \u0027dulwich-receive-pack\u0027 (\u0027push\u0027) solo a clientes confiables y autenticados, o deshabilitarlo por completo en servidores que solo necesitan servir \u0027fetches\u0027 y/o ejecutar el servidor bajo un l\u00edmite de memoria a nivel de sistema operativo (por ejemplo, \u0027ulimit\u0027, \u0027cgroups/MemoryMax\u0027, o un l\u00edmite de memoria de contenedor) para que un \u0027push\u0027 malicioso sea terminado en lugar de derribar el host."
}
],
"id": "CVE-2026-47734",
"lastModified": "2026-07-23T09:10:00.113",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"exploitabilityScore": 2.1,
"impactScore": 3.6,
"source": "security-advisories@github.com",
"type": "Secondary"
}
],
"ssvcV203": [
{
"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"ssvcData": {
"id": "CVE-2026-47734",
"options": [
{
"exploitation": "none"
},
{
"automatable": "no"
},
{
"technicalImpact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-06-11T14:08:10.796596Z",
"version": "2.0.3"
}
}
]
},
"published": "2026-06-10T23:16:48.807",
"references": [
{
"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-xrvj-v92f-53gj"
}
],
"sourceIdentifier": "security-advisories@github.com",
"vulnStatus": "Deferred",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "CWE-400"
},
{
"lang": "en",
"value": "CWE-789"
}
],
"source": "security-advisories@github.com",
"type": "Secondary"
}
]
}
GHSA-XRVJ-V92F-53GJ
Vulnerability from github – Published: 2026-06-08 23:43 – Updated: 2026-06-11 14:07Impact
An uncontrolled-resource-consumption (memory exhaustion) denial-of-service vulnerability (CWE-400 / CWE-789).
A client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received.
Who is impacted: Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler.
Patches
Patched in 1.2.5.
add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git's semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size.
Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server's repository config to a sane bound for their environment.
Workarounds
On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should:
- Restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches.
- Run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.
Resources
- git's receive.maxInputSize / git index-pack --max-input-size documentation
- Reported by Liyi, Ziyue, Strick, Maurice and Chenchen @ University of Sydney
{
"affected": [
{
"package": {
"ecosystem": "PyPI",
"name": "dulwich"
},
"ranges": [
{
"events": [
{
"introduced": "0.1.0"
},
{
"fixed": "1.2.5"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2026-47734"
],
"database_specific": {
"cwe_ids": [
"CWE-400",
"CWE-789"
],
"github_reviewed": true,
"github_reviewed_at": "2026-06-08T23:43:42Z",
"nvd_published_at": "2026-06-10T23:16:48Z",
"severity": "MODERATE"
},
"details": "## Impact\n\nAn uncontrolled-resource-consumption (memory exhaustion) denial-of-service vulnerability (CWE-400 / CWE-789).\n\nA client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received.\n\nWho is impacted: Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) -\nfor example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler. \n\n## Patches\n\nPatched in 1.2.5.\n\nadd_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size.\n\nUsers should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment.\n\n## Workarounds\n\nOn unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should:\n\n- Restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches.\n- Run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.\n\n## Resources\n\n- git\u0027s receive.maxInputSize / git index-pack --max-input-size documentation \n- Reported by Liyi, Ziyue, Strick, Maurice and Chenchen @ University of Sydney",
"id": "GHSA-xrvj-v92f-53gj",
"modified": "2026-06-11T14:07:18Z",
"published": "2026-06-08T23:43:42Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47734"
},
{
"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:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
}
],
"summary": "Dulwich has unbounded memory allocation in receive-pack from crafted thin packs"
}
PYSEC-2026-2466
Vulnerability from pysec - Published: 2026-07-13 15:46 - Updated: 2026-07-13 16:03Impact
An uncontrolled-resource-consumption (memory exhaustion) denial-of-service vulnerability (CWE-400 / CWE-789).
A client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received.
Who is impacted: Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler.
Patches
Patched in 1.2.5.
add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git's semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size.
Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server's repository config to a sane bound for their environment.
Workarounds
On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should:
- Restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches.
- Run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.
Resources
- git's receive.maxInputSize / git index-pack --max-input-size documentation
- Reported by Liyi, Ziyue, Strick, Maurice and Chenchen @ University of Sydney
| Name | purl | dulwich | pkg:pypi/dulwich |
|---|
{
"affected": [
{
"package": {
"ecosystem": "PyPI",
"name": "dulwich",
"purl": "pkg:pypi/dulwich"
},
"ranges": [
{
"events": [
{
"introduced": "0.1.0"
},
{
"fixed": "1.2.5"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"0.1.0",
"0.1.1",
"0.10.0",
"0.10.1a",
"0.11.0",
"0.11.1",
"0.11.2",
"0.12.0",
"0.13.0",
"0.14.0",
"0.14.1",
"0.15.0",
"0.16.0",
"0.16.1",
"0.16.2",
"0.16.3",
"0.17.1",
"0.17.2",
"0.17.3",
"0.18.0",
"0.18.1",
"0.18.2",
"0.18.3",
"0.18.4",
"0.18.5",
"0.18.6",
"0.19.0",
"0.19.1",
"0.19.10",
"0.19.11",
"0.19.12",
"0.19.13",
"0.19.14",
"0.19.15",
"0.19.16",
"0.19.2",
"0.19.3",
"0.19.3a0",
"0.19.4",
"0.19.5",
"0.19.6",
"0.19.7",
"0.19.8",
"0.19.9",
"0.2.1",
"0.20.0",
"0.20.1",
"0.20.10",
"0.20.11",
"0.20.12",
"0.20.13",
"0.20.14",
"0.20.15",
"0.20.17",
"0.20.18",
"0.20.19",
"0.20.2",
"0.20.20",
"0.20.21",
"0.20.22",
"0.20.23",
"0.20.24",
"0.20.25",
"0.20.26",
"0.20.27",
"0.20.28",
"0.20.29",
"0.20.3",
"0.20.30",
"0.20.31",
"0.20.32",
"0.20.33",
"0.20.34",
"0.20.35",
"0.20.36",
"0.20.37",
"0.20.38",
"0.20.39",
"0.20.4",
"0.20.40",
"0.20.41",
"0.20.42",
"0.20.43",
"0.20.44",
"0.20.45",
"0.20.46",
"0.20.47",
"0.20.48",
"0.20.49",
"0.20.5",
"0.20.50",
"0.20.6",
"0.20.7",
"0.20.8",
"0.20.9",
"0.21.0",
"0.21.1",
"0.21.2",
"0.21.3",
"0.21.4",
"0.21.4.1",
"0.21.5",
"0.21.6",
"0.21.7",
"0.22.0",
"0.22.1",
"0.22.3",
"0.22.4",
"0.22.5",
"0.22.6",
"0.22.7",
"0.22.8",
"0.23.0",
"0.23.1",
"0.23.2",
"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",
"0.3.0",
"0.3.1",
"0.3.2",
"0.3.3",
"0.4.0",
"0.4.1",
"0.5.0",
"0.6.0",
"0.6.1",
"0.6.2",
"0.7.0",
"0.7.1",
"0.8.0",
"0.8.1",
"0.8.2",
"0.8.3",
"0.8.4",
"0.8.5",
"0.8.6",
"0.8.7",
"0.9.0",
"0.9.1",
"0.9.2",
"0.9.3",
"0.9.4",
"0.9.5",
"0.9.6",
"0.9.7",
"0.9.8",
"0.9.9",
"1.0.0",
"1.1.0",
"1.2.0",
"1.2.1",
"1.2.2",
"1.2.3",
"1.2.4"
]
}
],
"aliases": [
"CVE-2026-47734",
"GHSA-xrvj-v92f-53gj"
],
"details": "## Impact\n\nAn uncontrolled-resource-consumption (memory exhaustion) denial-of-service vulnerability (CWE-400 / CWE-789).\n\nA client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received.\n\nWho is impacted: Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) -\nfor example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler. \n\n## Patches\n\nPatched in 1.2.5.\n\nadd_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size.\n\nUsers should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment.\n\n## Workarounds\n\nOn unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should:\n\n- Restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches.\n- Run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.\n\n## Resources\n\n- git\u0027s receive.maxInputSize / git index-pack --max-input-size documentation \n- Reported by Liyi, Ziyue, Strick, Maurice and Chenchen @ University of Sydney",
"id": "PYSEC-2026-2466",
"modified": "2026-07-13T16:03:57.741734Z",
"published": "2026-07-13T15:46:15.665113Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-47734"
},
{
"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-xrvj-v92f-53gj"
}
],
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
}
],
"summary": "Dulwich has unbounded memory allocation in receive-pack from crafted thin packs"
}
SUSE-SU-2026:3117-1
Vulnerability from csaf_suse - Published: 2026-07-17 15:37 - Updated: 2026-07-17 15:37| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.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": "Security update for python-dulwich",
"title": "Title of the patch"
},
{
"category": "description",
"text": "This update for python-dulwich fixes the following issue\n\n- CVE-2026-47734: Unbounded memory allocation in receive-pack from crafted thin packs (bsc#1268138).\n",
"title": "Description of the patch"
},
{
"category": "details",
"text": "SUSE-2026-3117,SUSE-SLE-Module-Public-Cloud-12-2026-3117",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2026_3117-1.json"
},
{
"category": "self",
"summary": "URL for SUSE-SU-2026:3117-1",
"url": "https://www.suse.com/support/update/announcement/2026/suse-su-20263117-1/"
},
{
"category": "self",
"summary": "E-Mail link for SUSE-SU-2026:3117-1",
"url": "https://lists.suse.com/pipermail/sle-updates/2026-July/048430.html"
},
{
"category": "self",
"summary": "SUSE Bug 1268138",
"url": "https://bugzilla.suse.com/1268138"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-47734 page",
"url": "https://www.suse.com/security/cve/CVE-2026-47734/"
}
],
"title": "Security update for python-dulwich",
"tracking": {
"current_release_date": "2026-07-17T15:37:51Z",
"generator": {
"date": "2026-07-17T15:37:51Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "SUSE-SU-2026:3117-1",
"initial_release_date": "2026-07-17T15:37:51Z",
"revision_history": [
{
"date": "2026-07-17T15:37:51Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "python-dulwich-0.18.5-4.6.1.aarch64",
"product": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64",
"product_id": "python-dulwich-0.18.5-4.6.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python-dulwich-0.18.5-4.6.1.i586",
"product": {
"name": "python-dulwich-0.18.5-4.6.1.i586",
"product_id": "python-dulwich-0.18.5-4.6.1.i586"
}
}
],
"category": "architecture",
"name": "i586"
},
{
"branches": [
{
"category": "product_version",
"name": "python-dulwich-0.18.5-4.6.1.ppc64le",
"product": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le",
"product_id": "python-dulwich-0.18.5-4.6.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python-dulwich-0.18.5-4.6.1.s390",
"product": {
"name": "python-dulwich-0.18.5-4.6.1.s390",
"product_id": "python-dulwich-0.18.5-4.6.1.s390"
}
}
],
"category": "architecture",
"name": "s390"
},
{
"branches": [
{
"category": "product_version",
"name": "python-dulwich-0.18.5-4.6.1.s390x",
"product": {
"name": "python-dulwich-0.18.5-4.6.1.s390x",
"product_id": "python-dulwich-0.18.5-4.6.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "python-dulwich-0.18.5-4.6.1.x86_64",
"product": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64",
"product_id": "python-dulwich-0.18.5-4.6.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "SUSE Linux Enterprise Module for Public Cloud 12",
"product": {
"name": "SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle-module-public-cloud:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12",
"product": {
"name": "SUSE Linux Enterprise Server 12",
"product_id": "SUSE Linux Enterprise Server 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise High Performance Computing 12",
"product": {
"name": "SUSE Linux Enterprise High Performance Computing 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sle_hpc:12"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP3",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP3",
"product_id": "SUSE Linux Enterprise Server 12 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP3",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP3",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp3"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP4",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP4",
"product_id": "SUSE Linux Enterprise Server 12 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp4"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server 12 SP5",
"product_id": "SUSE Linux Enterprise Server 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles:12:sp5"
}
}
},
{
"category": "product_name",
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product": {
"name": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5",
"product_identification_helper": {
"cpe": "cpe:/o:suse:sles_sap:12:sp5"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Module for Public Cloud 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise High Performance Computing 12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.aarch64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.aarch64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.ppc64le as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.ppc64le",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.s390x as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.s390x"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.s390x",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-dulwich-0.18.5-4.6.1.x86_64 as component of SUSE Linux Enterprise Module for Public Cloud 12",
"product_id": "SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64"
},
"product_reference": "python-dulwich-0.18.5-4.6.1.x86_64",
"relates_to_product_reference": "SUSE Linux Enterprise Server for SAP Applications 12 SP5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-47734",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-47734"
}
],
"notes": [
{
"category": "general",
"text": "Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-47734",
"url": "https://www.suse.com/security/cve/CVE-2026-47734"
},
{
"category": "external",
"summary": "SUSE Bug 1268138 for CVE-2026-47734",
"url": "https://bugzilla.suse.com/1268138"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise High Performance Computing 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Module for Public Cloud 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server 12:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP3:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP4:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12 SP5:python-dulwich-0.18.5-4.6.1.x86_64",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.aarch64",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.ppc64le",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.s390x",
"SUSE Linux Enterprise Server for SAP Applications 12:python-dulwich-0.18.5-4.6.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-07-17T15:37:51Z",
"details": "moderate"
}
],
"title": "CVE-2026-47734"
}
]
}
ubuntu-cve-2026-47734
Vulnerability from osv_ubuntu
Dulwich is a pure-Python implementation of the Git file formats and protocols. Starting in version 0.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git's semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server's repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.
{
"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.1.0 and prior to version 1.2.5, a client with push access could push a tiny crafted thin pack (~174 bytes) whose delta header declares a huge dest_size. When dulwich ingested it via add_thin_pack / apply_delta, it would allocate hundreds of MB of memory based on that attacker-controlled size, with no relationship to the actual bytes received. Operators running a Dulwich-based Git server that exposes git-receive-pack (i.e. accepts pushes) - for example via dulwich.server functionality, the HTTP smart server, or anything built on ReceivePackHandler - are impacted. The issue is patched in 1.2.5. add_thin_pack now accepts a max_input_size keyword (bytes; 0/None = unlimited, matching git\u0027s semantics), and ReceivePackHandler reads receive.maxInputSize from the repository config and passes it through. Wire reads are counted and a PackInputTooLarge exception is raised once the cap is exceeded - equivalent to git index-pack --max-input-size. Users should upgrade to Dulwich 1.2.5 or later and set receive.maxInputSize in their server\u0027s repository config to a sane bound for their environment. On unpatched versions, receive.maxInputSize has no effect, so it cannot be used as a workaround. Until upgrading, operators should restrict dulwich-receive-pack (push) access to trusted, authenticated clients only, or disable it entirely on servers that only need to serve fetches and/or run the server under an OS-level memory limit (e.g. ulimit, cgroups/MemoryMax, or a container memory limit) so a malicious push is killed rather than taking down the host.",
"id": "UBUNTU-CVE-2026-47734",
"modified": "2026-06-17T04:30:53Z",
"published": "2026-06-10T23:16:00Z",
"references": [
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2026-47734"
},
{
"type": "REPORT",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-47734"
},
{
"type": "REPORT",
"url": "https://github.com/jelmer/dulwich/security/advisories/GHSA-xrvj-v92f-53gj"
}
],
"related": [],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
},
{
"score": "medium",
"type": "Ubuntu"
}
],
"upstream": [
"CVE-2026-47734"
]
}
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.