sábado, 27 de enero de 2024

Blockchain Exploitation Labs - Part 3 Exploiting Integer Overflows And Underflows




In part 1 and 2 we covered re-entrancy and authorization attack scenarios within the Ethereum smart contract environment. In this blog we will cover integer attacks against blockchain decentralized applications (DAPs) coded in Solidity.

Integer Attack Explanation:

An integer overflow and underflow happens when a check on a value is used with an unsigned integer, which either adds or subtracts beyond the limits the variable can hold. If you remember back to your computer science class each variable type can hold up to a certain value length. You will also remember some variable types only hold positive numbers while others hold positive and negative numbers.

If you go outside of the constraints of the number type you are using it may handle things in different ways such as an error condition or perhaps cutting the number off at the maximum or minimum value.

In the Solidity language for Ethereum when we reach values past what our variable can hold it in turn wraps back around to a number it understands. So for example if we have a variable that can only hold a 2 digit number when we hit 99 and go past it, we will end up with 00. Inversely if we had 00 and we subtracted 1 we would end up with 99.


Normally in your math class the following would be true:

99 + 1 = 100
00 - 1 = -1


In solidity with unsigned numbers the following is true:

99 + 1 = 00
00 - 1 = 99



So the issue lies with the assumption that a number will fail or provide a correct value in mathematical calculations when indeed it does not. So comparing a variable with a require statement is not sufficiently accurate after performing a mathematical operation that does not check for safe values.

That comparison may very well be comparing the output of an over/under flowed value and be completely meaningless. The Require statement may return true, but not based on the actual intended mathematical value. This in turn will lead to an action performed which is beneficial to the attacker for example checking a low value required for a funds validation but then receiving a very high value sent to the attacker after the initial check. Lets go through a few examples.

Simple Example:

Lets say we have the following Require check as an example:
require(balance - withdraw_amount > 0) ;


Now the above statement seems reasonable, if the users balance minus the withdrawal amount is less than 0 then obviously they don't have the money for this transaction correct?

This transaction should fail and produce an error because not enough funds are held within the account for the transaction. But what if we have 5 dollars and we withdraw 6 dollars using the scenario above where we can hold 2 digits with an unsigned integer?

Let's do some math.
5 - 6 = 99

Last I checked 99 is greater than 0 which poses an interesting problem. Our check says we are good to go, but our account balance isn't large enough to cover the transaction. The check will pass because the underflow creates the wrong value which is greater than 0 and more funds then the user has will be transferred out of the account.

Because the following math returns true:
 require(99 > 0) 

Withdraw Function Vulnerable to an UnderFlow:

The below example snippet of code illustrates a withdraw function with an underflow vulnerability:

function withdraw(uint _amount){

    require(balances[msg.sender] - _amount > 0);
    msg.sender.transfer(_amount);
    balances[msg.sender] -= _amount;

}


In this example the require line checks that the balance is greater then 0 after subtracting the _amount but if the _amount is greater than the balance it will underflow to a value above 0 even though it should fail with a negative number as its true value.

require(balances[msg.sender] - _amount > 0);


It will then send the value of the _amount variable to the recipient without any further checks:

msg.sender.transfer(_amount);

Followed by possibly increasing the value of the senders account with an underflow condition even though it should have been reduced:

balances[msg.sender] -= _amount;


Depending how the Require check and transfer functions are coded the attacker may not lose any funds at all but be able to transfer out large sums of money to other accounts under his control simply by underflowing the require statements which checks the account balance before transferring funds each time.

Transfer Function Vulnerable to a Batch Overflow:

Overflow conditions often happen in situations where you are sending a batched amount of values to recipients. If you are doing an airdrop and have 200 users who are each receiving a large sum of tokens but you check the total sum of all users tokens against the total funds it may trigger an overflow. The logic would compare a smaller value to the total tokens and think you have enough to cover the transaction for example if your integer can only hold 5 digits in length or 00,000 what would happen in the below scenario?


You have 10,000 tokens in your account
You are sending 200 users 499 tokens each
Your total sent is 200*499 or 99,800

The above scenario would fail as it should since we have 10,000 tokens and want to send a total of 99,800. But what if we send 500 tokens each? Lets do some more math and see how that changes the outcome.


You have 10,000 tokens in your account
You are sending 200 users 500 tokens each
Your total sent is 200*500 or 100,000
New total is actually 0

This new scenario produces a total that is actually 0 even though each users amount is 500 tokens which may cause issues if a require statement is not handled with safe functions which stop an overflow of a require statement.



Lets take our new numbers and plug them into the below code and see what happens:

1. uint total = _users.length * _tokens;
2. require(balances[msg.sender] >= total);
3. balances[msg.sender] = balances[msg.sender] -total;

4. for(uint i=0; i < users.length; i++){ 

5.       balances[_users[i]] = balances[_users[i]] + _value;



Same statements substituting the variables for our scenarios values:

1. uint total = _200 * 500;
2. require(10,000 >= 0);
3. balances[msg.sender] = 10,000 - 0;

4. for(uint i=0; i < 500; i++){ 

5.      balances[_recievers[i]] = balances[_recievers[i]] + 500;


Batch Overflow Code Explanation:

1: The total variable is 100,000 which becomes 0 due to the 5 digit limit overflow when a 6th digit is hit at 99,999 + 1 = 0. So total now becomes 0.

2: This line checks if the users balance is high enough to cover the total value to be sent which in this case is 0 so 10,000 is more then enough to cover a 0 total and this check passes due to the overflow.

3: This line deducts the total from the senders balance which does nothing since the total of 10,000 - 0 is 10,000.  The sender has lost no funds.

4-5: This loop iterates over the 200 users who each get 500 tokens and updates the balances of each user individually using the real value of 500 as this does not trigger an overflow condition. Thus sending out 100,000 tokens without reducing the senders balance or triggering an error due to lack of funds. Essentially creating tokens out of thin air.

In this scenario the user retained all of their tokens but was able to distribute 100k tokens across 200 users regardless if they had the proper funds to do so.

Lab Follow Along Time:

We went through what might have been an overwhelming amount of concepts in this chapter regarding over/underflow scenarios now lets do an example lab in the video below to illustrate this point and get a little hands on experience reviewing, writing and exploiting smart contracts. Also note in the blockchain youtube playlist we cover the same concepts from above if you need to hear them rather then read them.

For this lab we will use the Remix browser environment with the current solidity version as of this writing 0.5.12. You can easily adjust the compiler version on Remix to this version as versions update and change frequently.
https://remix.ethereum.org/

Below is a video going through coding your own vulnerable smart contract, the video following that goes through exploiting the code you create and the videos prior to that cover the concepts we covered above:


Download Video Lab Example Code:

Download Sample Code:

//Underflow Example Code: 
//Can you bypass the restriction? 
//--------------------------------------------
 pragma solidity ^0.5.12;

contract Underflow{
     mapping (address =>uint) balances;

     function contribute() public payable{
          balances[msg.sender] = msg.value;  
     }

     function getBalance() view public returns (uint){
          return balances[msg.sender];     
     }

     function transfer(address _reciever, uint _value) public payable{
         require(balances[msg.sender] - _value >= 5);
         balances[msg.sender] = balances[msg.sender] - _value;  

         balances[_reciever] = balances[_reciever] + _value;
     }
    
}

This next video walks through exploiting the code above, preferably hand coded by you into the remix environment. As the best way to learn is to code it yourself and understand each piece:


 

Conclusion: 

We covered a lot of information at this point and the video series playlist associated with this blog series has additional information and walk throughs. Also other videos as always will be added to this playlist including fixing integer overflows in the code and attacking an actual live Decentralized Blockchain Application. So check out those videos as they are dropped and the current ones, sit back and watch and re-enforce the concepts you learned in this blog and in the previous lab. This is an example from a full set of labs as part of a more comprehensive exploitation course we have been working on.

Related word

  1. Pentest Reporting Tools
  2. Hack Tools Online
  3. Pentest Tools Apk
  4. Hacking Tools For Windows Free Download
  5. Hacker Tools 2020
  6. Hacker Tools Windows
  7. Underground Hacker Sites
  8. Hacker Tools Apk Download
  9. Hacking Tools Hardware
  10. Tools 4 Hack
  11. Pentest Tools Github
  12. Hacker Tools For Pc
  13. Hak5 Tools
  14. Android Hack Tools Github
  15. Hacker Tools Free
  16. Bluetooth Hacking Tools Kali
  17. Android Hack Tools Github
  18. Hack Tool Apk No Root
  19. Hacking Tools Online
  20. Black Hat Hacker Tools
  21. Underground Hacker Sites
  22. Hack App
  23. Hacker Tools Mac
  24. Hacker Tools Github
  25. Hacker Techniques Tools And Incident Handling
  26. Pentest Tools Kali Linux
  27. World No 1 Hacker Software
  28. Pentest Tools Open Source
  29. Hacker Tools
  30. Pentest Tools For Ubuntu
  31. Hacking Tools Windows
  32. Pentest Tools For Windows
  33. Hacker Tools Software
  34. Pentest Tools List
  35. Hack Tools Download
  36. Pentest Tools Url Fuzzer
  37. Hack Tool Apk
  38. Tools 4 Hack
  39. Hacking Tools 2020
  40. Hack Tools For Mac
  41. Black Hat Hacker Tools
  42. Pentest Tools Alternative
  43. Hacking Tools Windows
  44. Tools Used For Hacking
  45. Hack Apps
  46. Hacker Tools 2019
  47. World No 1 Hacker Software
  48. Pentest Tools Open Source
  49. Pentest Tools Download
  50. Hack Tools
  51. Beginner Hacker Tools
  52. Hack Tools Online
  53. How To Make Hacking Tools
  54. Pentest Tools List
  55. Hack Rom Tools
  56. What Is Hacking Tools
  57. Hacking Tools Name
  58. Hacking App
  59. Hacking Tools Kit
  60. Hacking App
  61. Free Pentest Tools For Windows
  62. Install Pentest Tools Ubuntu
  63. Pentest Tools Tcp Port Scanner
  64. Pentest Tools Open Source
  65. Underground Hacker Sites
  66. Hackers Toolbox
  67. Hack Tools
  68. Beginner Hacker Tools
  69. Hacking Tools Windows
  70. Hacking Tools For Mac
  71. Hack And Tools
  72. Hak5 Tools
  73. Hacker Tools
  74. Underground Hacker Sites
  75. Android Hack Tools Github
  76. Hacker Tools Mac
  77. Hacking Tools For Kali Linux
  78. How To Hack
  79. Pentest Tools Apk
  80. World No 1 Hacker Software
  81. Hacks And Tools
  82. Pentest Tools Online
  83. Hacking Tools For Windows 7
  84. Pentest Tools Nmap
  85. Hacker Search Tools
  86. Pentest Tools Bluekeep
  87. Hackrf Tools
  88. What Is Hacking Tools
  89. Tools For Hacker
  90. Hack Tools
  91. How To Make Hacking Tools
  92. Computer Hacker
  93. Hack Tools Online
  94. Termux Hacking Tools 2019
  95. Hacker Tools For Pc
  96. Hacker Tools Hardware
  97. Hacking Tools Usb
  98. Hacking Tools Pc
  99. Tools 4 Hack
  100. Pentest Tools Website Vulnerability
  101. Pentest Tools Nmap
  102. Hack Website Online Tool
  103. Beginner Hacker Tools
  104. Tools 4 Hack
  105. Hacking Tools Mac
  106. Hacker Tools Github
  107. Hacker Tools Free
  108. Hacking Tools For Windows
  109. Hacker Tools Free Download
  110. Hacking Tools For Mac
  111. Hacker Tools Mac
  112. Pentest Tools Port Scanner
  113. Pentest Tools Tcp Port Scanner
  114. How To Install Pentest Tools In Ubuntu
  115. Android Hack Tools Github
  116. Pentest Tools
  117. Hacker Tools
  118. Pentest Tools Port Scanner
  119. Hacker Tools
  120. Pentest Tools For Mac
  121. Android Hack Tools Github
  122. Hacking Tools For Windows Free Download
  123. What Are Hacking Tools
  124. Hacker Security Tools
  125. Bluetooth Hacking Tools Kali
  126. Pentest Tools Android
  127. Pentest Automation Tools
  128. Nsa Hack Tools Download
  129. Pentest Tools Download
  130. What Are Hacking Tools
  131. Pentest Tools
  132. Pentest Tools Find Subdomains
  133. Underground Hacker Sites
  134. Pentest Tools Bluekeep
  135. Usb Pentest Tools
  136. Black Hat Hacker Tools
  137. What Are Hacking Tools
  138. Hack Tools Download
  139. Hack Tools Online
  140. Pentest Tools Apk
  141. Pentest Tools Framework
  142. Hacker Tools Linux
  143. Hacker Tools For Mac
  144. Pentest Tools Android
  145. Computer Hacker
  146. Hacking Tools For Kali Linux
  147. Hacking Tools Hardware
  148. Hackrf Tools
  149. Computer Hacker
  150. Pentest Tools Tcp Port Scanner
  151. Hack Rom Tools
  152. Hacking Tools For Windows
  153. Hacking Tools 2019
  154. Hacking Tools For Games
  155. Best Pentesting Tools 2018
  156. Bluetooth Hacking Tools Kali
  157. Tools Used For Hacking
  158. Github Hacking Tools

0 comentarios:

Publicar un comentario