smart contract security
play

Smart Contract Security Assessing Solidity smart contracts About Me - PowerPoint PPT Presentation

Smart Contract Security Assessing Solidity smart contracts About Me Evangelos Deirmentzoglou Security Consultant Smart contract audits Nmap/Ncrack contributor Certs: OSCE, OSCP, OSWP Blockchain Basics Front Running


  1. Smart Contract Security Assessing Solidity smart contracts

  2. About Me • Evangelos Deirmentzoglou • Security Consultant • Smart contract audits • Nmap/Ncrack contributor • Certs: OSCE, OSCP, OSWP

  3. • Blockchain Basics • Front Running • Reentrancy • External Calls • Integer Over*ow • tx.origin • Gas limit

  4. Blockchain Basics Ethereum Gas • Introduced to reduce abuse • transac.on cost (EVM opera.on) • gas price (in eth) Miner receives es.mated gas spent* gas price Remainder of gas cost is returned to the sender

  5. Blockchain Basics Blockchain Transac.ons Blockchain Transaction Pool Miner

  6. Frontrunning ● aka Timing a5acks ● A6ec.ng: First In First Out Contracts ● Miner frontrunning ● User frontrunning

  7. Frontrunning ● Examples: DEX, Bancor, random ICOs Reference: h ps://hackernoon.com/front-running-bancor-in-150-lines-of-python-with-ethereum-api-d5e2bfd0d798

  8. Frontrunning Reference: h5ps://twi5er.com/phildaian/status/1032679149960355840

  9. Frontrunning - Mi.ga.on ● Set upper gas limit ● Set a Dxed gas limit ● tx.gasprice ● gasleE()

  10. Frontrunning - Mi.ga.on Commit/Reveal approach Reference: h5ps://karl.tech/learning-solidity-part-2-vo.ng/

  11. Blockchain Basics - Payable Payable func.ons

  12. Reentrancy 150$ mil stolen DAO & numerous other contracts

  13. Reentrancy - Vulnerable Contract

  14. Reentrancy - A5ack Contract

  15. Reentrancy - Mi.ga.on ● Always use transfer() ● Use sensi.ve opera.ons before calls to other contracts ● ReentrancyGuard by OpenZeppelin Reference: h ps://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/ ReentrancyGuard.sol

  16. Reentrancy - Bridges ● Reentrancy is not really obsolete ● “A bridge to connect all bridges” ● Connects ERC20 tokens

  17. Reentrancy - Bridges Not reentrancy per se More like call to the unknown

  18. External Contracts ● Trust that called func.on will succeed ● Trust that you know what the called func.on do

  19. External Contract - Mi.ga.on ● Ensure external contract returns expected value ● Perform sensi.ve opera.ons before calling external contract ● Never assume external contract func.onality

  20. Integer Over*ow ● Proof of Weak Hands Coin - 866 Eth ● BatchOver*ow Reference: h ps://medium.com/@peckshield/alert-new-batchover*ow-bug-in-mul+ple-erc20-smart-contracts- cve-2018-10299-511067db6536

  21. Integer Over*ow ● Integer only ● Conversions (Unsigned -> Signed) More over*ow cases: h ps://github.com/ethereum/solidity/issues/796#issuecomment-253578925

  22. Integer Over*ow - Mi.ga.on ● Perform opera.ons within boundaries ● SafeMath library Reference: h ps://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol

  23. tx.origin ● Blockchain CSRF? ● tx.origin vs msg.sender

  24. tx.origin call() For Vulnerable Contract tx.origin User msg.sender User Vulnerable Contract User

  25. tx.origin call() For Malicious Contract For Vulnerable Contract tx.origin User User msg.sender User Malicious Contract Malicious Vulnerable User Contract Contract

  26. tx.origin - Mi.ga.on ● call vs delegatecall ● Cau.on when using tx.origin

  27. Gas limit a5acks ● Looping over unknown arrays ● Leads to denial of service

  28. Gas limit a5acks - Mi.ga.on ● Avoid looping over arrays of unknown length ● Set an upper limit for the array length ● Control the loop by checking gasleE()

  29. Things we didn’t cover ● Randomness (is hard) ● Visibility (Func.on, secret) ● Unexpected ether (contract-suicide) ● Delegatecall (3rd party libraries) ● Storage

  30. Ques.ons?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend