Plugin Directory

Changeset 2629539


Ignore:
Timestamp:
11/15/2021 01:28:50 AM (4 years ago)
Author:
code9fair
Message:

Show data on log tabs when attacker try to login more than 2 attempts

Location:
code9
Files:
47 added
5 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • code9/trunk/code9.php

    r2615536 r2629539  
    44Plugin URI: https://wordpress.org/plugins/code9/
    55Description: Utility tool for wordpress. 2-step verificatoin code user login.
    6 Version:     1.0.4
     6Version:     1.0.5
    77Author:      Code9Fair
    88Author URI: https://paypal.me/code9fair/
  • code9/trunk/plugin/security/api/security_anti_brute_force_logs_get.php

    r2615536 r2629539  
    77  wp_send_json([
    88    "result" => true,
    9     "data" => $wpdb->get_results( "SELECT * FROM $wpdb->options WHERE option_name LIKE '%code9_anti_brute_force[]%' ORDER BY option_id DESC" )
     9    "data" => $wpdb->get_results( "SELECT * FROM $wpdb->options WHERE option_name LIKE '%code9_anti_brute_force[]%' AND option_value > '2' ORDER BY option_id DESC" )
    1010  ]);
    1111}
  • code9/trunk/readme.txt

    r2615557 r2629539  
    22Contributors: Code9fair
    33Donate link: https://paypal.me/code9fair
    4 Tags: 2FA, 2-step login, WordPress authentication, two step authentication, verification password, anti brute force login, xmlrpc.php
     4Tags: 2FA,2-step login,WordPress authentication,two step authentication,verification password,anti brute force login,xmlrpc.php
    55Requires at least: 4.1
    66Tested up to: 5.8
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88Requires PHP: 5.6.4
    99License: GPLv2
     
    6161= 1.0.4 =
    6262* Add Logs tabs to show who is trying to login to your site but fail.
     63= 1.0.5 =
     64* Show data on log tabs when attacker try to login more than 2 attempts.
Note: See TracChangeset for help on using the changeset viewer.