Reproduced Exploit
Majority Protocol — start without ranked rewards locks prize pool
FixedRanksReward.setRankedRewards (and ProportionalToXPReward.setNumberOfWinners) require Created state, but the game can start and conclude without them. claimRewards then reverts RankedRewardsNotSet and tokens cannot be recovered.
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: 65377-impossible-to-claim-rewards-when-ranked-rewards-or-number-of. Standalone Foundry PoC and full write-up: 65377-impossible-to-claim-rewards-when-ranked-rewards-or-number-of_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: frozen-funds · permanent · reward-accounting
Key info#
| Impact | HIGH — prize pool permanently locked if ranked rewards / number of winners never set before start |
| Protocol | Majority Protocol |
| Bug class | startAndRevealGameQuestion does not require rewardsConfigured |
| Finding | Cyfrin (Dacian) · #65377 |
| 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#
FixedRanksReward.setRankedRewards (and ProportionalToXPReward.setNumberOfWinners) require Created state, but the game can start and conclude without them. claimRewards then reverts RankedRewardsNotSet and tokens cannot be recovered.
HARM: 10 USDC prize pool locked in SessionManager forever.
Root cause#
No rewardsConfigured gate on startAndRevealGameQuestion.
Preconditions#
Game created with FixedRanksReward strategy; creator never calls setRankedRewards.
Attack walkthrough#
- Create + join without setting ranked rewards.
- Start → end → conclude with a winner.
- setRankedRewards now reverts (not Created).
- claimRewards reverts RankedRewardsNotSet.
Diagrams#
Impact#
All entry fees / prize funds permanently unclaimable once Concluded.
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 a2e353e / 96d5fbe
Sources & further analysis#
Reproductions & code
- Standalone PoC + full trace: 65377-impossible-to-claim-rewards-when-ranked-rewards-or-number-of_exp (evm-hack-registry mirror).
- AuditVault finding: 65377-impossible-to-claim-rewards-when-ranked-rewards-or-number-of.
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.