Reproduced Exploit
Statusl: An insider slasher dodges the commit-reveal delay queue by committing against an unused
Chain
Other
Category
untagged
Date
Jan 1970
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: 65326-anyone-can-dodge-reveal-delays-by-providing-unrelated-accoun. The historical source/toolchain is unavailable; this entry is documentation only and claims no executable Forge PoC.
Vulnerability classes: vuln/locked-funds · vuln/unfair-mint · vuln/reward-accounting
Reproduction: a faithful minimal reproduction of the vulnerable finding — the vulnerable function is reproduced verbatim (marked
@>) with faithful minimal doubles; local deploy, no fork.
Root cause#
An insider slasher dodges the commit-reveal delay queue by committing against an unused, unrelated account (0-delay revealStartTime) and revealing in the same block, minting the 1-token slashing reward to the attacker EOA that the honest, delay-abiding slasher should have received.
}
delete slashCommitments[account][hash];
slash(privateKey, rewardRecipient); // @> pays out without ever checking account == members[poseidonHash(privateKey)] — an unrelated account skips the reveal-delay queue
}
Why it's exploitable here#
An insider slasher dodges the commit-reveal delay queue by committing against an unused, unrelated account (0-delay revealStartTime) and revealing in the same block, minting the 1-token slashing reward to the attacker EOA that the honest, delay-abiding slasher should have received.
Attack path#
Marked-line walkthrough (Playground)#
The EVM Playground pins each step to the exact executed source line in 0xbd4fd5a3ce…:
- L107 — Identity commitment index: Setup: counter tracking registered identity commitments.
- L111 — Commitment reveal-time mapping: Setup: maps each account+hash to its
revealStartTime, the moment its slash reveal becomes valid. - L146 — slashReveal discloses the slash: Setup:
slashRevealis the second step that reveals a committed slash and pays the reward. - L158 — Zero reveal-time bypasses delay: Branches on
revealStartTime == 0; committing against an unused, unrelated account leaves it zero so no delay applies. - L167 — Slash mints reward, no delay: Root cause: reaches
slash()and pays the reward without enforcing the reveal delay, since the commit was bound to an unrelated, same-block-revealable account. - L171 — Internal slash pays recipient: Setup:
slash()burns the target and mints the slashing reward torewardRecipient. - L196 — Define SLASHER_ROLE constant: Setup: the
SLASHER_ROLEidentifier gating who may slash.
PoC#
Registry (Foundry, local deploy — verbatim vulnerable source + harm-asserting test + negative control):
cd 65326-anyone-can-dodge-reveal-delays-by-providing-unrelated-accoun_exp
forge test -vvv
The browser Playground replays the same synthetic opcode-for-opcode and measures the harm: An insider slasher dodges the commit-reveal delay queue by committing against an unused, unrelated account (0-delay revealStartTime) and rev. Both gates are green (registry forge test PASS + Playground _verify-poc VERDICT: PASS).
Sources & further analysis#
Reproductions & code
- No executable Forge reproduction is claimed; the historical source/toolchain was unavailable for this finding.
- AuditVault finding: 65326-anyone-can-dodge-reveal-delays-by-providing-unrelated-accoun.
- Upstream DeFiHackLabs PoC directory: src/test.
Alerts & third-party analyses
- DeFiHackLabs incident explorer: search "Statusl: An insider slasher dodges the commit-reveal delay queue by committing against an unused".
- Web3Sec X hacked database: search.
- Rekt leaderboard: search.
- Solodit incident search: search.
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.