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 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?