Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Awesomwasm 2023 CTF

Challenge 01: Mjolnir

Smart contract that allows user deposit for a locked period before unlocking them.

Execute entry points:

pub enum ExecuteMsg {
    Deposit {},
    Withdraw { ids: Vec<u64> },
}

Please check the challenge's integration_tests for expected usage examples. You can use these tests as a base to create your exploit Proof of Concept.

🏠 Base scenario:

  • The contract contains initial funds.
  • USER deposits funds into the contract.

⭐ Goal for the challenge:

  • Demonstrate how an unprivileged user can drain all funds inside the contract.