I saw a query run in a log file on an application. and it contained a query like:
SELECT ID FROM CUST_ATTR49 WHERE 1=0
what is the use of such a query that is bound to return nothing?
|
I saw a query run in a log file on an application. and it contained a query like:
what is the use of such a query that is bound to return nothing? |
|||||||||
|
|
A query like this can be used to ping the database. The clause:
Ensures that non data is sent back, so no CPU charge, no Network traffic or other resource consumption. A query like that can test for:
|
|||||||
|
|
|
A usecase I can think of: you have a filter form where you don't want to have any search results. If you specify some filter, they get added to the where clause. Or it's usually used if you have to create a sql query by hand. E.g. you don't want to check whether the where clause is empty or not..and you can just add stuff like this:
(if you connect the clauses with OR you need 0=1, if you have AND you have 1=1) |
||||
|
Thats an attempt for Blind SQL Injection attack. Some hacker had tried to do that on your application via URL or through Textboxes. Try to make your application secure as soon you can. If it's already secure. It doesn't matter. |
|||
|
|
|
This may be also used to extract the table schema from a table without extracting any data inside that table. As Andrea Colleoni said those will be the other benefits of using this. |
||||
|
|
|
It seems like, that someone is trying to hack your database. It looks like someone tried mysql injection. You can read more about it here: Mysql Injection |
|||
|
|
|
quoted from Greg
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause? |
|||
|