Changeset 2629539
- Timestamp:
- 11/15/2021 01:28:50 AM (4 years ago)
- Location:
- code9
- Files:
-
- 47 added
- 5 deleted
- 3 edited
-
tags/1.0.0 (deleted)
-
tags/1.0.1 (deleted)
-
tags/1.0.2 (deleted)
-
tags/1.0.3 (deleted)
-
tags/1.0.4 (deleted)
-
tags/1.0.5 (added)
-
tags/1.0.5/assets (added)
-
tags/1.0.5/assets/c9_static.min.css (added)
-
tags/1.0.5/assets/c9_static.min.js (added)
-
tags/1.0.5/assets/code9.css (added)
-
tags/1.0.5/assets/component (added)
-
tags/1.0.5/assets/component/confirm (added)
-
tags/1.0.5/assets/component/confirm/confirm.css (added)
-
tags/1.0.5/assets/component/confirm/confirm.js (added)
-
tags/1.0.5/assets/component/noti (added)
-
tags/1.0.5/assets/component/noti/noti.css (added)
-
tags/1.0.5/assets/component/noti/noti.js (added)
-
tags/1.0.5/assets/component/popup (added)
-
tags/1.0.5/assets/component/popup/popup.css (added)
-
tags/1.0.5/assets/component/popup/popup.js (added)
-
tags/1.0.5/assets/component/popup_drag (added)
-
tags/1.0.5/assets/component/popup_drag/popup_drag.css (added)
-
tags/1.0.5/assets/component/popup_drag/popup_drag.js (added)
-
tags/1.0.5/assets/component/tab (added)
-
tags/1.0.5/assets/component/tab/tab.css (added)
-
tags/1.0.5/assets/component/tab/tab.js (added)
-
tags/1.0.5/assets/gridjs.umd.js (added)
-
tags/1.0.5/assets/mermaid.min.css (added)
-
tags/1.0.5/assets/spa.js (added)
-
tags/1.0.5/code9.php (added)
-
tags/1.0.5/function (added)
-
tags/1.0.5/function/code9_anti_brute_foce.php (added)
-
tags/1.0.5/function/code9_api.php (added)
-
tags/1.0.5/function/code9_crypto.php (added)
-
tags/1.0.5/function/code9_menu_page_register.php (added)
-
tags/1.0.5/function/code9_security.php (added)
-
tags/1.0.5/page (added)
-
tags/1.0.5/page/dashboard.php (added)
-
tags/1.0.5/plugin (added)
-
tags/1.0.5/plugin/security (added)
-
tags/1.0.5/plugin/security/api (added)
-
tags/1.0.5/plugin/security/api/security_2_step_get.php (added)
-
tags/1.0.5/plugin/security/api/security_2_step_key_iv_reset.php (added)
-
tags/1.0.5/plugin/security/api/security_2_step_update.php (added)
-
tags/1.0.5/plugin/security/api/security_anti_brute_force_blocked_remove.php (added)
-
tags/1.0.5/plugin/security/api/security_anti_brute_force_logs_get.php (added)
-
tags/1.0.5/plugin/security/api/security_anti_brute_force_update.php (added)
-
tags/1.0.5/plugin/security/spa (added)
-
tags/1.0.5/plugin/security/spa.php (added)
-
tags/1.0.5/plugin/security/spa/security.js (added)
-
tags/1.0.5/plugin/security/spa/security.php (added)
-
tags/1.0.5/readme.txt (added)
-
trunk/code9.php (modified) (1 diff)
-
trunk/plugin/security/api/security_anti_brute_force_logs_get.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
code9/trunk/code9.php
r2615536 r2629539 4 4 Plugin URI: https://wordpress.org/plugins/code9/ 5 5 Description: Utility tool for wordpress. 2-step verificatoin code user login. 6 Version: 1.0. 46 Version: 1.0.5 7 7 Author: Code9Fair 8 8 Author URI: https://paypal.me/code9fair/ -
code9/trunk/plugin/security/api/security_anti_brute_force_logs_get.php
r2615536 r2629539 7 7 wp_send_json([ 8 8 "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" ) 10 10 ]); 11 11 } -
code9/trunk/readme.txt
r2615557 r2629539 2 2 Contributors: Code9fair 3 3 Donate link: https://paypal.me/code9fair 4 Tags: 2FA, 2-step login, WordPress authentication, two step authentication, verification password, anti brute force login,xmlrpc.php4 Tags: 2FA,2-step login,WordPress authentication,two step authentication,verification password,anti brute force login,xmlrpc.php 5 5 Requires at least: 4.1 6 6 Tested up to: 5.8 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 Requires PHP: 5.6.4 9 9 License: GPLv2 … … 61 61 = 1.0.4 = 62 62 * 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.