Log in Register

Hack The Chain Learn Smart Contract Security Hands-On

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?

Key Features

Practical Challenges

Learn by doing with graded challenges from basic to advanced vulnerabilities.

Community Content

Create and share your own exercises with the community to help others learn.

Real-World Skills

Develop practical security skills for auditing and developing secure contracts.

Ready to start learning?

Join our community of security enthusiasts and blockchain developers. Develop the skills to build secure smart contracts or become an auditor.