An attacker is able allocate arbitrarily many bytes in the Bitswap server by sending many WANT_BLOCK
and or WANT_HAVE
requests which are queued in an unbounded queue, with allocations that persist even if the connection is closed.
This affects users accepting untrusted connections with the Bitswap server, this also affects users using the old API stubs at github.com/ipfs/boxo/bitswap
because it transitively uses github.com/ipfs/boxo/bitswap/server
.
We have renamed go-libipfs to boxo; this document uses both terms interchangeably. The version numbers for both are applicable, as they share the same historical timeline.
Apply one of:
- Update boxo
to v0.6.0
or later
- Update boxo
to v0.4.1
Note that v0.5.0
is NOT safe, v0.4.1
is a backport of the v0.6.0
security fixes on top of v0.4.0
.
MaxQueuedWantlistEntriesPerPeer
option allows configuring how many wantlist entries the server remembers; if a peer sends a wantlist bigger than this (including a sum of multiple delta updates) the server will truncate the wantlist to the match the limit.
This defaults to 1024
entries per peer.PeerDisconnected
callback is received.MaxCidSize
option and defaults to 168 bytes
.WANT_*
or CANCEL
).
The attack were more effective if done with CIDs that are present in target's blockstore, this is because this will push longer-lasting jobs on some priority queue.
Since inline CID are literal data (instead of hashes of data), everyone always "has" any inline CID (since instead of loading the data from disk, it can be extracted from the CID). It makes no sense for anyone to ever ask you about an inline CID since they could also just parse it themselves. Thus, as a defensive measure, we kill the connection with peers that ask about an inline CID.github.com/ipfs/go-libipfs/bitswap/server/internal/decision.(*Engine).MessageReceived
github.com/ipfs/go-libipfs/bitswap/server/internal/decision.(*Engine).NotifyNewBlocks
github.com/ipfs/go-libipfs/bitswap/server/internal/decision.(*Engine).findOrCreate
github.com/ipfs/go-libipfs/bitswap/server/internal/decision.(*Engine).PeerConnected
If you are using the stubs at github.com/ipfs/go-libipfs/bitswap
and not taking advantage of the features provided by the server, refactoring your code to use the new split API will allow you to run in a client-only mode using: github.com/ipfs/boxo/bitswap/client
.
{ "nvd_published_at": "2023-05-10T14:15:32Z", "cwe_ids": [ "CWE-400", "CWE-770" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2023-05-11T20:32:18Z" }