one of the best. Fourni par Blogger.

Test Footer

Home » » Find Table Names using SQL Injection

Find Table Names using SQL Injection

Written By Tao on samedi 10 août 2013 | 03:47





Work space !




In the previous examples we cheated a little. You knew that the table containing user names and passwords was called users and you knew that it had two columns, name and password. In some cases you do not know the name of the table or the column names, but you can use the same techniques to find these out.



You need to find out the name of the database that you are using. The function DATABASE() will give you that value (but you have to guess at it as before). When you know the name of the database being used you can take guesses at the names of the tables.

Does the current database contain the letter j?

' OR EXISTS(SELECT 1 FROM dual WHERE database() LIKE '% j %') AND ''='

Is there a table called one in database test?

' OR EXISTS(SELECT * FROM INFORMATION_ SCHEMA.TABLES WHERE TABLE_SCHEMA='test' AND TABLE_NAME=' one ') AND ''='

Is there more than one table in the database(s) containing a j?

' OR (SELECT COUNT(*) FROM INFORMATION_ SCHEMA.TABLES WHERE TABLE_SCHEMA LIKE '% j %')>1 AND ''='







via oneofthebest All articles about hacking have only an educational goal and we are not responsible

0 commentaires:

Enregistrer un commentaire

Popular Posts

Random post