MySQL 运算符绕过

在PHP中:

对于select pass from user where username = {$username}的查询语句

当$username=7<0x1时,这一个比较的运算,运算结果为true\

接下来是在MySQL中:

这里先拼接一下SQL语句

select pass from user where username = 7<1

在这个语句中,SQL会先进行语法检测,检测表中是否有字段username再进行查询,由于这里有一个比较运算符,所以查询语句再执行从查询前会先进行比较运算错误就出现在比较运算中,这里比较运算错误的将username=7看做了一个字符串 ,1看作了另一个字符串,而在SQL中,比较运算符为弱比较,相当于PHP中的==运算符,他会先将两个字符串进行同类型转换,结果这里就将username = 7转换为了数字,但是由于第一个字符不是数字而是字符u,因此这里就将username=7转换为0而0是小于1的,所以运算顺序何以理解为:

username = 7<1

转换username=7这个字符串:

0<1

比较运算符运算:

true

最终的查询语句变为:

select pass from user where true

综上所述,我们就可以将这个查询语句理解为:

select pass from user where true

同时我们可以认为:

select pass from user where username = 7<1

select pass from user where 'username = 7'<1

是等价的

select pass from user where 'username = 7'>'1'

也是等价的

以下时MySQL的测试语句

select username=7<1;#1即为true
select 'username=7'<1;#1即为true
select 'username=7'>'1';#1即为true
select '2a'<'1';#0即为false,两字符串的比较逻辑是该字符的ASCII码乘
#上该字符所在位置的下标,比方说2a的字符串'大小'是char(2)*1+char(a)*2
#'1'则是同理char(1)*1

以上仅为个人见解,如有错误还请指出更正

相关推荐
阿猿收手吧!几秒前
【Redis】Redis入门以及什么是分布式系统{Redis引入+分布式系统介绍}
数据库·redis·缓存
奈葵4 分钟前
Spring Boot/MVC
java·数据库·spring boot
leegong2311112 分钟前
Oracle、PostgreSQL该学哪一个?
数据库·postgresql·oracle
中东大鹅18 分钟前
MongoDB基本操作
数据库·分布式·mongodb·hbase
夜光小兔纸39 分钟前
Oracle 普通用户连接hang住处理方法
运维·数据库·oracle
远方 hi2 小时前
linux虚拟机连接不上Xshell
开发语言·php·apache
寰宇软件2 小时前
PHP防伪溯源一体化管理系统小程序
小程序·uni-app·vue·php
m0_748233642 小时前
【PHP】部署和发布PHP网站到IIS服务器
android·服务器·php
兩尛2 小时前
订单状态定时处理、来单提醒和客户催单(day10)
java·前端·数据库
web2u2 小时前
MySQL 中如何进行 SQL 调优?
java·数据库·后端·sql·mysql·缓存