Sql Ninja Death row SQL injection (http://leettime.net/sqlninja.com)
What is death row SQL injection? normally the table has many rows itself, so if we execute the usual SQL query ("select * from table") we can get all the records from that table. if a website has SQL injection vulnerability attacker also get all records from the database. the clever programmer uses limit keyword to hide unwanted rows from an attacker. let's assume programme use LIMIT 1 in his query attacker can see only 1 row of output at one time. hence it reduces the impact of the attack. so we called hide rows as death row. death row SQL injection challenges from http://leettime.net/sqlninja.com challenge 1: if we put a single quote at the end of the URL we will get an error. the below image shows that when we try to exploit a SQL injection attack, our first step should be fixed the query. if we use this "-- -" at the URL end, we can fix the query then we have to find the respected table's column by using "ORDER BY" comm...