sql 子查询:() select goods_name from goods where goods_id=(select max(goods_id) from goods): 联合查询:select * from boy union select *from girl select 查库 11,hid,bname from boy union select uid,name,age from user information_schema http 协议 tcp 1-65535 udp 1-
1.判断是否可以注入: 数字型: 1.1在参数后面加一个引号',如果页面报数字number错误,则一定不是sql注入点:如果报数据库比如mysql.oracle之类的错误,则是一个sql注入点. 1.2 在参数后面加上 依次加上 and 1=1 和 and 1=2,如果加上 and 1=1 还能正常显示原来的数据,并且加上 and 1=2时,原来数据不显示或者报错时,则是一个sql注入点 字符型: 1.3 在参数后面加上 依次加上 ' and '1'='1 和 ' and '1'='2 ,如果加
1.判断有无注入点; and 1=1 and 1=2 2.猜表一般的表的名称无非是admin adminuser user pass password 等..and 0<>(select count(*) from *)and 0<>(select count(*) from admin) -判断是否存在admin这张表 3.猜帐号数目 如果遇到0< 返回正确页面 1<返回错误页面说明帐号数目就是1个and 0<(select count(*) from admi