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.

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

报告相同问题?

悬赏问题

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