An interactive training platform for Smart Contract auditing with real-world challenges. Find, exploit, and learn from vulnerabilities in a secure sandbox environment.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract VulnerableVault {
mapping(address => uint256) private balances;
function deposit() public payable {
balances[msg.sender] += msg.value;
}
function withdraw(uint256 amount) public {
require(balances[msg.sender] >= amount);
(bool success, ) = msg.sender.call{value: amount}("");
require(success, "Transfer failed");
balances[msg.sender] -= amount;
}
}
// Can you find the vulnerability?
Learn by doing with graded challenges from basic to advanced vulnerabilities.
Create and share your own exercises with the community to help others learn.
Develop practical security skills for auditing and developing secure contracts.
Join our community of security enthusiasts and blockchain developers. Develop the skills to build secure smart contracts or become an auditor.