Reproduced Exploit
Majority Protocol — free cross-game participation via unbound questionId
commitReaction only checks the caller joined _gameId, then forwards an arbitrary _questionId to the prompt strategy. Reactions are stored by questionId alone, so a free-game member can answer paid-game questions and claim winnings without paying that game's fee.
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: 65374-users-can-participate-in-an-infinite-number-of-games-they-ha. Standalone Foundry PoC and full write-up: 65374-users-can-participate-in-an-infinite-number-of-games-they-ha_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: broken-logic · reward-theft · timestamp-dependence
Key info#
| Impact | HIGH — join one free game, play infinite paid games without entry fees, still win and claim prizes |
| Protocol | Majority Protocol |
| Bug class | Missing gameId↔questionId binding in commitReaction |
| Finding | Cyfrin (Dacian) · #65374 |
| 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#
commitReaction only checks the caller joined _gameId, then forwards an arbitrary _questionId to the prompt strategy. Reactions are stored by questionId alone, so a free-game member can answer paid-game questions and claim winnings without paying that game's fee.
HARM: free-rider claims the paid game's entire prize pool (10 USDC).
Root cause#
No validation that _questionId belongs to _gameId in SessionManager or the strategy.
Preconditions#
At least one free/cheap game the attacker can join, and a funded paid game with a revealed question.
Attack walkthrough#
- Create free game + paid game; victim funds paid game.
- Attacker joins free game only.
- Attacker
commitReaction(freeGameId, paidQuestionId, commit)succeeds. - Attacker is ranked winner of the paid game and claims the pool.
Diagrams#
Impact#
Permanent bypass of all entry fees while remaining eligible to win and claim.
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 62cafca / 01d5cc2 / f0e77f9
Sources & further analysis#
Reproductions & code
- Standalone PoC + full trace: 65374-users-can-participate-in-an-infinite-number-of-games-they-ha_exp (evm-hack-registry mirror).
- AuditVault finding: 65374-users-can-participate-in-an-infinite-number-of-games-they-ha.
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.