miércoles, 31 de mayo de 2023

Learning Web Pentesting With DVWA Part 3: Blind SQL Injection

In this article we are going to do the SQL Injection (Blind) challenge of DVWA.
OWASP describes Blind SQL Injection as:
"Blind SQL (Structured Query Language) injection is a type of attack that asks the database true or false questions and determines the answer based on the applications response. This attack is often used when the web application is configured to show generic error messages, but has not mitigated the code that is vulnerable to SQL injection.
When an attacker exploits SQL injection, sometimes the web application displays error messages from the database complaining that the SQL Query's syntax is incorrect. Blind SQL injection is nearly identical to normal , the only difference being the way the data is retrieved from the database. When the database does not output data to the web page, an attacker is forced to steal data by asking the database a series of true or false questions. This makes exploiting the SQL Injection vulnerability more difficult, but not impossible."
To follow along click on the SQL Injection (Blind) navigation link. You will be presented with a page like this:
Lets first try to enter a valid User ID to see what the response looks like. Enter 1 in the User ID field and click submit. The result should look like this:
Lets call this response as valid response for the ease of reference in the rest of the article. Now lets try to enter an invalid ID to see what the response for that would be. Enter something like 1337 the response would be like this:

We will call this invalid response. Since we know both the valid and invalid response, lets try to attack the app now. We will again start with a single quote (') and see the response. The response we got back is the one which we saw when we entered the wrong User ID. This indicates that our query is either invalid or incomplete. Lets try to add an or statement to our query like this:
' or 1=1-- - 
This returns a valid response. Which means our query is complete and executes without errors. Lets try to figure out the size of the query output columns like we did with the sql injection before in Learning Web Pentesting With DVWA Part 2: SQL Injection.
Enter the following in the User ID field:
' or 1=1 order by 1-- - 
Again we get a valid response lets increase the number to 2.
' or 1=1 order by 2-- - 
We get a valid response again lets go for 3.
' or 1=1 order by 3-- - 
We get an invalid response so that confirms the size of query columns (number of columns queried by the server SQL statement) is 2.
Lets try to get some data using the blind sql injection, starting by trying to figure out the version of dbms used by the server like this:
1' and substring(version(), 1,1) = 1-- - 
Since we don't see any output we have to extract data character by character. Here we are trying to guess the first character of the string returned by version() function which in my case is 1. You'll notice the output returns a valid response when we enter the query above in the input field.
Lets examine the query a bit to further understand what we are trying to accomplish. We know 1 is the valid user id and it returns a valid response, we append it to the query. Following 1, we use a single quote to end the check string. After the single quote we start to build our own query with the and conditional statement which states that the answer is true if and only if both conditions are true. Since the user id 1 exists we know the first condition of the statement is true. In the second condition, we extract first character from the version() function using the substring() function and compare it with the value of 1 and then comment out the rest of server query. Since first condition is true, if the second condition is true as well we will get a valid response back otherwise we will get an invalid response. Since my the version of mariadb installed by the docker container starts with a 1 we will get a valid response. Lets see if we will get an invalid response if we compare the first character of the string returned by the version() function to 2 like this:
1' and substring(version(),1,1) = 2-- - 
And we get the invalid response. To determine the second character of the string returned by the version() function, we will write our query like this:
1' and substring(version(),2,2) = 1-- -
We get invalid response. Changing 1 to 2 then 3 and so on we get invalid response back, then we try 0 and we get a valid response back indicating the second character in the string returned by the version() function is 0. Thus we have got so for 10 as the first two characters of the database version. We can try to get the third and fourth characters of the string but as you can guess it will be time consuming. So its time to automate the boring stuff. We can automate this process in two ways. One is to use our awesome programming skills to write a program that will automate this whole thing. Another way is not to reinvent the wheel and try sqlmap. I am going to show you how to use sqlmap but you can try the first method as well, as an exercise.
Lets use sqlmap to get data from the database. Enter 1 in the User ID field and click submit.
Then copy the URL from the URL bar which should look something like this
http://localhost:9000/vulnerabilities/sqli_blind/?id=1&Submit=Submit
Now open a terminal and type this command:
sqlmap --version 
this will print the version of your sqlmap installation otherwise it will give an error indicating the package is not installed on your computer. If its not installed then go ahead and install it.
Now type the following command to get the names of the databases:
sqlmap -u "http://localhost:9000/vulnerabilities/sqli_blind/?id=1&Submit=Submit" --cookie="security=low; PHPSESSID=aks68qncbmtnd59q3ue7bmam30" -p id 
Here replace the PHPSESSID with your session id which you can get by right clicking on the page and then clicking inspect in your browser (Firefox here). Then click on storage tab and expand cookie to get your PHPSESSID. Also your port for dvwa web app can be different so replace the URL with yours.
The command above uses -u to specify the url to be attacked, --cookie flag specifies the user authentication cookies, and -p is used to specify the parameter of the URL that we are going to attack.
We will now dump the tables of dvwa database using sqlmap like this:
sqlmap -u "http://localhost:9000/vulnerabilities/sqli_blind/?id=1&Submit=Submit" --cookie="security=low; PHPSESSID=aks68qncbmtnd59q3ue7bmam30" -p id -D dvwa --tables 
After getting the list of tables its time to dump the columns of users table like this:
sqlmap -u "http://localhost:9000/vulnerabilities/sqli_blind/?id=1&Submit=Submit" --cookie="security=low; PHPSESSID=aks68qncbmtnd59q3ue7bmam30" -p id -D dvwa -T users --columns 
And at last we will dump the passwords column of the users table like this:
sqlmap -u "http://localhost:9000/vulnerabilities/sqli_blind/?id=1&Submit=Submit" --cookie="security=low; PHPSESSID=aks68qncbmtnd59q3ue7bmam30" -p id -D dvwa -T users -C password --dump 
Now you can see the password hashes.
As you can see automating this blind sqli using sqlmap made it simple. It would have taken us a lot of time to do this stuff manually. That's why in pentests both manual and automated testing is necessary. But its not a good idea to rely on just one of the two rather we should leverage power of both testing types to both understand and exploit the vulnerability.
By the way we could have used something like this to dump all databases and tables using this sqlmap command:
sqlmap -u "http://localhost:9000/vulnerabilities/sqli_blind/?id=1&Submit=Submit" --cookie="security=low; PHPSESSID=aks68qncbmtnd59q3ue7bmam30" -p id --dump-all 
But obviously it is time and resource consuming so we only extracted what was interested to us rather than dumping all the stuff.
Also we could have used sqlmap in the simple sql injection that we did in the previous article. As an exercise redo the SQL Injection challenge using sqlmap.

References:

1. Blind SQL Injection: https://owasp.org/www-community/attacks/Blind_SQL_Injection
2. sqlmap: http://sqlmap.org/
3. MySQL SUBSTRING() Function: https://www.w3schools.com/sql/func_mysql_substring.asp

Related news


The Live HTML Editor



The Live HTML Editor program lets you write your HTML pages while viewing dynamically what changes are happening to your HTML page. The main purpose of this tool is to help HTML learners learn HTML quickly and easily while keeping an eye on what they are doing with their HTML page. It also helps developers in writing quick HTML lines to see how it will affect their HTML page.

This program can also help you visualize your inline and embedded CSS styles on fly. You can apply CSS styles and see them dynamically change the look and feel of your HTML page. Developers can test different inline and embedded CSS styles to make sure what will look good on their website.

Some of the features of this program are:
  •          Live HTML preview of whatever HTML you type.
  •          Supports HTML Syntax Highlighting.
  •          Supports opening an HTML file and Live Preview editing of that file.
  •          Supports Saving files.
  •          Support for inline and embedded CSS.

However this program does not support Javascript and it also doesn't support separate CSS files. This program is still in development phase and we might see support for Javascript and separate CSS files in the future.

If you are a student and want to learn HTML without having to install a bulky software that takes a lot of time to open and function, then this is a good option.

The Live HTML Editor is Free and Opensource project and has been written in Python with QT interface you can check out source from sourceforge.

Read more


HiddenWasp Linux Malware Backdoor Samples





Intezer HiddenWasp Malware Stings Targeted Linux Systems 




Links updated: Jan 19, 2023


File informatio


8914fd1cfade5059e626be90f18972ec963bbed75101c7fbf4a88a6da2bc671b
8f1c51c4963c0bad6cf04444feb411d7
 shell

f321685342fa373c33eb9479176a086a1c56c90a1826a0aef3450809ffc01e5d
52137157fdf019145d7f524d1da884d7
elf

f38ab11c28e944536e00ca14954df5f4d08c1222811fef49baded5009bbbc9a2
ba02a964d08c2afe41963bf897d385e7
shell

e9e2e84ed423bfc8e82eb434cede5c9568ab44e7af410a85e5d5eb24b1e622e3
cbcda5c0dba07faced5f4641aab1e2cd
 elf shared-lib

d66bbbccd19587e67632585d0ac944e34e4d5fa2b9f3bb3f900f517c7bbf518b
2b13e6f7d9fafd2eca809bba4b5ea9a6
64bits elf shared-lib

2ea291aeb0905c31716fe5e39ff111724a3c461e3029830d2bfa77c1b3656fc0
568d1ebd8b6fb17744d3c70837e801b9
shell

8e3b92e49447a67ed32b3afadbc24c51975ff22acbd0cf8090b078c0a4a7b53d
33c3f807caea64293add29719596f156
 shell

609bbf4ccc2cb0fcbe0d5891eea7d97a05a0b29431c468bf3badd83fc4414578
71d78c97eb0735ec6152a6ff6725b9b2
tar-bundle gzip contains-elf

d596acc70426a16760a2b2cc78ca2cc65c5a23bb79316627c0b2e16489bf86c0
6d1cd68384de9839357a8be27894182b
 tar-bundle gzip

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