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"
]
}
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.