Learn node js, angular, php best practices. A self learning platform to learn web development. Learn modern web development technologies.

June 15, 2019

SQL Injection Step By Step Part 2

This post is the final part of sql injection series. If you missed the first part, you can read it here.


What We Will Be Creating


We will create a post listing page, where user can search any post by entering post title or description.


Posts Home Page


Creating The Posts Table

You may wonder that how the posts are displayed in the post page. If you see the screenshot above, user is unable to create posts, as no form is provided for the them to do that.

Well, I did it intentionally, so that you can focus on learning the inner-workings of sql injection in depth.


To make the posts visible in that way, we need to create the posts table using php myadmin utility that we can use by entering this url "http://localhost/phpmyadmin/" in the browser, after we start apache server and mysql database service from the XAMPP control panel.


The table structure for the posts table is as follows.



Posts Table Structure
Posts Table Structure



The data for the posts table is as follows.


Posts Table Data
Posts Table Data




Download the entire project by clicking below



Explanation of posts.php

In this page, at first we checked if the user is already logged in or not. If the user is logged in then he or she can view the posts page, otherwise he or she is redirected to the login page.

We took the search keyword from the textbox, when user submits the form, we collect the textbox content through GET request.


Then, we checked if any match is found by comparing post's title or description with the search keyword. If any match is found we display the results in a table. If no posts exist matching the exact keyword, we displayed a message "No posts found!".


If for some reason, the database is unable to process the search keyword, we displayed a sql error to the user.



Extracting The Complete Database Details

We completed the posts search functionality for this application. Let's see how to exploit this application, so that we can get the complete database details from it. For this purpose, we will be using UNION operator of MySQL database. 


Basics Of UNION Operator



  • UNION operator is used so that we can chain together multiple results of two or more sql statements.
  • Each SELECT statement withing UNION, must have equal number of columns.


So, we now know, what are the basic requirements to run UNION statements successfully. Let's see how we can do that.


To do that, we need to use ORDER BY clause of MySQL. We will enter a specific ORDER BY statement in search textbox and see if any sql error is displayed. If this happens, then we will simply decrease the numeric value that we used in that ORDER BY clause. 


If we saw, "No posts found!" message, then it's ok, we can check again by increasing the numeric value that we used in the ORDER BY clause. After completing this step, we can get total number of columns in the posts table.


The screen shot of first attempt is shown below.



First Attempt To Get Number Of Columns
First Attempt To Get Number Of Columns



The screen shot of final attempt is shown below.


Final Attempt To Get Number Of Columns
Final Attempt To Get Number Of Columns


From the above screen shot, we saw the error message. So, we know that, the posts table contains exactly 4 columns.

 Let's use this information to get a lot of information about the database that is being used in this application.



Getting MySQL Database Name

Getting Mysql Database Name
Getting Mysql Database Name




Getting MySQL Database Tables



Getting Mysql Database Tables
Getting Mysql Database Tables



Getting Columns Of users Table



Getting Columns Of users Table
Getting Columns Of users Table



Getting id, username and password Columns Of users Table



Getting id, username and password columns of users Table





Preventing SQL Injection


If you want to prevent SQL Injection, then this section will help you to understand preventing SQL Injection completely. If you don't know what is sql injection, you can read it here

In order to prevent SQL injection, you will able to get a set of practical examples, so that you won't find it difficult to understand the concept.


What We Will Do


Previously, we saw how an attacker used sql injection to bypass login, exploit the database and was able to get detail information about the database. Now, we will stop the attacker from doing that.


Protecting The Login Page


In the following screen shot, the highlighted text marked in white color, will protect all types of sql injection attacks.


Protecting Login Page From Sql Injection
Protecting Login Page From Sql Injection

After making those changes, refresh the login page, and try doing that login bypass attack again, you will see something like the screen shot shown below.


Protected Login Page From Sql Injection
Protected Login Page From Sql Injection

Protecting The Posts Page



Simply, add marked code as shown in the screen shot below.


Protecting Posts Page From Sql Injection
Protecting Posts Page From Sql Injection
After completing this step, try executing sql injection attacks that used union statement. You will see similar outcome as shown in screen shot below. 


Protected Posts Page From Sql Injection
Protected Posts Page From Sql Injection



Final Words

If you find this post about learning sql injection step by step part 2 as helpful, please share it with others. Thank you!

No comments:

Post a Comment