blockchains-security-toolkit/bug_hunting
dr. mia von steinkirch, phd 7027f61a10
add bug bounty list
2023-02-17 16:25:12 -08:00
..
README.md add bug bounty list 2023-02-17 16:25:12 -08:00

bug hunting smart contracts


initial questions


  • list external and public functions.
  • when and where external call happens and what changes.
  • check payable functions.
  • how functions are accessed (permissions by who).
  • follow the flow for transfers.

look for common vulnerabilities


  • reentrancy with flashloans, fallbacks, payables.
  • access control.
  • arithmetic errors.

create an enviroment for testing


  • static analysis
  • fuzzing and poc exploits (use foundry)


resources