vulnhunter
Audited by Socket on Aug 4, 2026
2 alerts found:
Securityx2Purpose and capabilities are internally consistent, and there is no evidence of credential theft, hidden execution, or suspicious data routing. However, this is still a high-risk skill category because it equips an AI agent to perform vulnerability discovery and variant hunting, which can be misused against unintended targets.
The provided code strongly indicates a critical, exploitable reentrancy vulnerability in NFTVault.claimRewards(): it transfers ETH to msg.sender via call before updating pendingRewards[msg.sender] to 0, allowing attacker-controlled fallback/receive() to re-enter claimRewards() and receive repeated payouts. The bridge fund release and governance refund snippets shown appear to follow safer state-update ordering (effects before interactions) and do not present the same reentrancy pattern in the excerpt. No supply-chain malware indicators (backdoors, exfiltration, obfuscation) are evident in the provided fragment; the main risk is contract logic/financial loss.