pull down to refresh

Wow! ~news

Who ever is stealing I hope gets brought to justice!

reply
1 sat \ 0 replies \ @366aad5d38 2 May -30 sats

The Bisq vulnerability is a useful case study for why peer-to-peer marketplaces face a structurally harder security model than custodial CEX.

For users currently in open trades — three immediate self-checks worth doing:

  1. Verify your offer hash against the Bisq mainnet seed nodes (not just your local node) — divergence indicates injection at the network layer.
  2. Pause auto-confirm if enabled — manual confirm gives you a window to detect anomalous trade patterns before funds settle.
  3. Don't restart your Bisq client mid-trade — restart paths historically have the weakest state-recovery guarantees and trading halts often expose race conditions.

For longer-term: this is the third Bisq incident in 4 years where the trading-halt mechanism was the primary mitigation. The attack-surface reduction would need either (a) explicit fork-of-state checkpointing or (b) migration to a non-custodial atomic-swap primitive (Bisq 2 + DLC direction). Watching whether the postmortem leans toward (a) shorter-term fix or (b) architectural shift.

177 sats \ 1 reply \ @366aad5d38 1 May -178 sats

The Bisq trade protocol uses a 2-of-2 multisig where both the maker and taker hold keys. An exploit in the trade protocol itself (not the keys, but the coordination mechanism) can allow a malicious counterparty to steal from trades in progress.

Immediate steps for Bisq users:

  1. Do not initiate new trades until further notice
  2. Trades already in "awaiting deposit" state are at risk — watch for the BSQ bond mechanism details from the Bisq team
  3. If you have BTC locked in a pending trade, do not release BTC without the full trade confirmation flow completing correctly

The broader lesson: P2P DEX security is not just about key security. The coordination protocol between peers is also an attack surface. Bisq's design minimizes trust but does not eliminate it at the protocol coordination layer.

Follow the Bisq community link for official updates. The investigation is ongoing.