Practice of SQL Injection

First, do you know (or remember) what SQL Injection is?

(para versão em português)

According to OWASP.org (https://www.owasp.org/index.php/SQL_Injection).

A SQL injection attack consists of insertion or "injection" of a SQL query via the input data from the client to the application. A successful SQL injection exploit can read sensitive data from the database, modify database data.

That is, a web service technique invasion through SQL commands.As long as the web service (website, webservice, REST API, amoung others) is susceptible to the SQL Injection attack, you can execute unforeseen SQL commands on the system.

For example, we can access the system user table and get information not covered by the API.

Note: Even today we can find this kind of glitch in web services (websites and web services)! : (

Our lab (site that failed on purpose)

https://rmauro-failure.herokuapp.com/

Please note: Understand that run this attack is against the law. Don't do it in the real world unless you are hired for it (white hat hacker), even for study purposes.

What we are doing here is a test on my test site, which I produced for this purpose.

In that case we can :)
OK? You are free to run the tests on this site.

Getting familiar with the vulnerable site

Open site https://rmauro-failure.herokuapp.com/

1-1

This is the website that we are going to work on, in the text box (enter a product name) is where we can search by product name and also perform our attack.

ATTACK!!! GO, GO, GO.

Studying the rmauro-failure System

First enter in the search field the value Hammer and search.

2

Let's think for a moment and try to understand how it works behind the scenes - * code behind * if you allow me.

Sql-inje

  1. The system collects the entered value, Hammer, the search field;
  2. Send to the trainer, or concatenator, of SQL by concatenating the String sent with the rest of the query;
  3. When formed, the SQL command is sent to the database, any relational database;
  4. The database processes your request and returns to the program with the result;
  5. Once executed by the database, the program parses the result to object (s) in memory, processes it and sends it to the caller, in this case the screen;
  6. Browser shows the return (HTML) on the screen.

This is the basic flow of the system. Simple, right?

Hammer time - Time to attack the system

First let's run some tests.

  1. Enter in the search field the value ' (single quotes) and hit the search button, Search.

3

4

The result should be an red error like this. Perfect!

This means that the system is dynamically assembling Query SQL without any handling of the input parameters.

Let's think a little. What will be the query generated and sent to the database?

SELECT ? ? ? FROM ? WHERE ? '''

Something close to this that caused the explosion!

We do not know which table is used or the table fields, but we do know what the basic structure of a SQL SELECT command looks like.

Let's explore a little more

Now test the search field with mmer.

5

Note that there was return, then we can infer that the query is something like.

SELECT ? FROM ? WHERE ? LIKE '%mmer%'

We came to the conclusion that we have control over what we write in the final part of query, just where mmer goes, the other parts of the command we cannot control.

But this small part can cause disaster.

Finding out which database we are working on

1- Our query is formed by ... ok, we already know that.

SELECT ? FROM ? WHERE ? LIKE '%mmer%'

2- Now let's modify it to ...

SELECT ? FROM ? WHERE ? LIKE '%';--%'

This will cause the SQL command to end, proving that we can modify it as we wish.

3- Let's try it out. Type in the search field ';--

6

Increasingly interesting. Now we got all database records (same as before) with the new query.

4 - Cool, let's try to find out which is the database in question (MySql, Sql Server, Oracle, PostgreSql, etc). To find out let's execute a function that only works on a specific database (nothing standand like SELECT / INSERT or DELETE). Something like the Sleep function.

Don't forget that this system was designed by me, so I know the database is PostgreSql, so let's go straight to the point and execute the pg_sleep() (sleep from PostgreSql).

So we do not waste time testing various possibilities for various databases.

5 - Execute in the search field the value mmer%';SELECT pg_sleep(10);--

SELECT ? FROM ? WHERE ? LIKE '%mmer%';SELECT pg_sleep(10);--%'

Note that it takes precisely 10 seconds to return the answer. Perfect!

But what if it's not working?
Easy, just swap PostgreSql's sleep function for a specific one from another database until you find the database we're working on. In this case there is no magic.

Finding out which tables exist in the database

Cool so far, isn't it ?! What else can we do with our query? Everything, or almost everything ...

SELECT ? FROM ? WHERE ? LIKE '%mmer%';SELECT pg_sleep(10);--%'

This is the last query we ran. Think now about the possibilities.

Since we know the database is PostgreSql. Now let's try to find tables.

First we need to understand the SQL return structure, the columns.
Our feedback should be around three columns.

Three columns because the product shown on the screen contains an Id, Name and a Price.

(3 | Hammer Drills | 22.3)

Ok, ok. It may not be exactly three columns, but let's try with 3 for now (remember I designed the system).

Now let's use the UNION command from SQL. This allows us to merge two results into a single result or Dataset.

union-sql-1

Let's use this to return product data and something that interests us.

SELECT ?, ?, ? FROM ? WHERE ? LIKE '%mmer%'

Let's modify our query to use UNION statment and bring the values 1, 2, 3.

SELECT ?, ?, ? FROM ? WHERE ? LIKE '%mmer%' UNION SELECT '1', '2', '3';--

7

This yielded the feedback we already know plus a row containing the values "1", "2" and "3", also validating our three column hypothesis.

Let's move on to the ** tables ** now.

SELECT ?, ?, ? FROM ? WHERE ? LIKE '%mmer%' UNION SELECT '1', '2', '3';--

Our current command.

The command below is able to return the Schema tables from the PostgreSql database.

SELECT table_name FROM information_schema.tables WHERE table_schema='public'

sql-schema

*Expected outcome. System Tables *

Let's introduce our Query.

SELECT table_name FROM information_schema.tables WHERE table_schema='public'

Put in the search field mmer%'UNION SELECT "table_name", "table_schema", "table_catalog" FROM information_schema.tables WHERE table_schema='public'--

Creating the QUERY:

select ?, ?, ? from ?
UNION 
SELECT "table_name", "table_catalog", "table_schema" FROM information_schema.tables WHERE table_schema='public'

result-tables

We found the Product and Users tables.

Now it's your turn. From here you should only extrapolate and explore the possibilities.

Website Source Code

https://github.com/bootcamp-bbq/SqlInjection-Lab.git

References Used:

https://www.owasp.org/index.php/SQL_Injection
https://youtu.be/ciNHn38EyRc

How was the tutorial?

Love Discord?