douzhi2760 2015-01-23 19:42
浏览 44
已采纳

PHP中的这段代码如何容易受到SQL注入攻击?

I know the basics of SQL Injection and how to avoid it. I know my code is vulnerable, but I'm trying to inject SQL and it is not working. This is about knowing HOW it is vulnerable, because in practice, I cannot do it.

This is the code:

   $email = filter_input(INPUT_GET, 'email');

   if ($email != '') { 
       try {
           $stm1 = $db->query("SELECT * from clients WHERE email =  '$email'");
           $result = $stm1->fetchAll();
       } catch (Exception $ex) {
           echo $ex->getMessage();
       }
  }

I'm trying to inject via this input

<input id="textinput" name="email" type="text">

and I'm using codes like:

'; UPDATE clients set status = 0 WHERE client_id = 1

Note that this is a valid SQL Query.

My real questions are:

  1. Is filter_input preventing anything in this case?
  2. Does PDO '$query' function ONLY allow ONE statement?
  3. If this is not vulnerable in this case, are there any other cases where it would be vulnerable?
  • 写回答

1条回答 默认 最新

  • duanhuang3074 2015-01-23 19:52
    关注

    First, $email = filter_input(INPUT_GET, 'email'); does nothing it's the same as $email = filter_input(INPUT_GET, 'email', FILTER_DEFAULT);, and FILTER_DEFAULT is documented as "do nothing".

    Second, PDO's Query function does appear to support multiple statements (albeit in a rather annoying to use manner, and I can't say I've personally played with it). PHP PDO multiple select query consistently dropping last rowset

    Third, even without multiple statement support, $email could be populated with something like nobody@example.com' OR username='admin to return data you didn't plan on returning to the user.

    Fundamentally: stop worrying about whether bad code is exploitable, and start writing good code instead. Start using properly prepared statements and don't worry about injection anymore.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度