这里用到了之前哪位师傅发的数据库全库搜索方法,非常好用,拜谢。
mysql全库:
select table_schema,table_name,column_name from information_schema.columns where table_schema !=0x696E666F726D6174696F6E5F736368656D61 and table_schema !=0x6D7973716C and table_schema !=0x706572666F726D616E63655F736368656D61 and (column_name like ‘%pass%’ or column_name like ‘%pwd%’);
本文标题: | 数据库全库搜索方法 |
本文链接: (转载请附上本文链接) | http://vulsee.com/archives/vulsee_2020/0930_12914.html |