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.

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

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效