Reproduced Exploit
Majority Protocol — multi assertResults causes bond loss for all but first
assertResults is permissionless and accepts multiple bonds for the same sessionId. The first successful recordResults fills winners[sessionId]; the second reverts WinnersAlreadyRecorded inside the OO callback, so later asserters never recover their bonds (UMA docs: callbacks must not revert).
Chain
Other
Category
untagged
Date
Jan 2026
Source
AuditVault
EVM Playground
Source-level debugger — step opcodes and Solidity in sync
The attack is replayed in an in-browser EVM preloaded with the exact dumped fork state. The execution tree shows every call; step by Solidity line or by opcode across all depths — source, Stack, Memory, Storage, Balances (native / ERC-20 / NFT), Transient storage and Return value stay in sync. Click a tree node, opcode, or source line to jump. No backend, no live RPC.
Source & credit. Reproduction of a public audit finding curated by AuditVault — the original finding: 65379-if-multiple-users-call-defaultsessionassertresults-all-but-t. Standalone Foundry PoC and full write-up: 65379-if-multiple-users-call-defaultsessionassertresults-all-but-t_exp in the
evm-hack-registrymirror.
Reproduction: self-contained Foundry PoC (forge-std only) — no fork. Full trace: output.txt.
AuditVault taxonomy: lang/solidity · platform/cyfrin · sector/gaming · severity/high · genome: missing-modifier · direct-drain · dos-resistance
Key info#
| Impact | HIGH — second (and later) assertResults callers permanently lose their UMA USDC bonds |
| Protocol | Majority Protocol |
| Bug class | No per-session uniqueness on assertDataFor; recordResults reverts on second resolve |
| Finding | Cyfrin (Dacian) · #65379 |
| Report | https://github.com/solodit/solodit_content/blob/main/reports/Cyfrin/2026-01-27-cyfrin-majority-protocol-v2.0.md |
| Source | AuditVault |
| Status | Audit finding — reproduced as a standalone local synthetic |
| Compiler | ^0.8.24 (PoC) |
TL;DR#
assertResults is permissionless and accepts multiple bonds for the same sessionId. The first successful recordResults fills winners[sessionId]; the second reverts WinnersAlreadyRecorded inside the OO callback, so later asserters never recover their bonds (UMA docs: callbacks must not revert).
HARM: second asserter loses 250 USDC bond permanently.
Root cause#
No session-level assertion uniqueness; callback path reverts instead of no-op when winners already recorded.
Preconditions#
Game in Ended state; two users independently call assertResults with bonds.
Attack walkthrough#
- User A asserts results (posts bond).
- User B asserts same session (posts bond).
- OO resolves A truthfully — winners set, A recovers bond.
- OO resolves B — recordResults reverts; B's bond stuck.
Diagrams#
Impact#
All but the first successful asserter lose their minimum USDC bonds.
Sources#
- AuditVault finding
- Report: https://github.com/solodit/solodit_content/blob/main/reports/Cyfrin/2026-01-27-cyfrin-majority-protocol-v2.0.md
- Reduced source provenance: Engage-Protocol/engage-protocol @ cca0cb3; fixed in 4c5483f
Sources & further analysis#
Reproductions & code
- Standalone PoC + full trace: 65379-if-multiple-users-call-defaultsessionassertresults-all-but-t_exp (evm-hack-registry mirror).
- AuditVault finding: 65379-if-multiple-users-call-defaultsessionassertresults-all-but-t.
Alerts & third-party analyses
These dashboards index community alerts tweets, post-mortems, and independent write-ups. Reach them through the protocol name above to cross-check this reproduction against other analyses.