dongyuqie4322 2016-02-01 13:00
浏览 28
已采纳

简单的PDO暴力查询不起作用

I'm trying to check attempted logins by the user has committed. For some reason it skips even tough I have 7 entries in my database, +1 of reach try, with similar IP and user_id.

This is my query, full code can be found here.

// BRUTE FORCE CHECK
$remote_ip = $_SERVER['REMOTE_ADDR'];

$sql = "
SELECT  attempt_nr 
FROM    users_login_attempts 
WHERE   user_id = :userid 
AND     time > NOW() - INTERVAL 1 HOUR 
AND     user_ip = :userip
";

$results = $db_connect->prepare($sql);
if ($results->execute(array(':userid' => $user_id,':userip' => $remote_ip))){
    $count_tries = $results->rowCount();
    if ($count_tries < 5) {
        // DO SOMETHING IF LIMIT IS NOT REACHED
    }
    else { 
        // RETURN FAILURE 
    }

How come the user skips this part?

IMAGES: TABLE STRUCTURE

enter image description here

TABLE

enter image description here

MY CODE

enter image description here

THE VAR_DUMP RESULT

enter image description here

  • 写回答

1条回答 默认 最新

  • doubeng1278 2016-02-01 13:41
    关注

    From phpdoc:

    PDOStatement::rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement executed by the corresponding PDOStatement object.

    If the last SQL statement executed by the associated PDOStatement was a SELECT statement, some databases may return the number of rows returned by that statement. However, this behaviour is not guaranteed for all databases and should not be relied on for portable applications.

    Note the suggestion against using rowCount for select queries. Instead, I would change your code like this:

    $sql = "
    SELECT  count(*) AS attempt_nr
    FROM    users_login_attempts 
    WHERE   user_id = :userid 
    AND     time > DATE_ADD(NOW(), INTERVAL -1 HOUR)
    AND     user_ip = :userip
    ";
    
    $results = $db_connect->prepare($sql);
    if ($results->execute(array(':userid' => $user_id,':userip' => $remote_ip))) {
        $row = $results->fetch(PDO::FETCH_ASSOC);
        $count_tries = $row['attempt_nr'];
        if ($count_tries < 5) {
            // DO SOMETHING IF LIMIT IS NOT REACHED
        }
        else { 
            // RETURN FAILURE 
        }
    }
    

    In addition, note that with the code working correctly, you'll effectively lock your users out after 5 unsuccessful login attempts even if the user logged in successfully in between them, therefore you'll need to also ensure to clear the unsuccessful history on successful login or make your sql more complex to account for this.

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

报告相同问题?

悬赏问题

  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗
  • ¥15 用twincat控制!
  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1