Changeset 2907229
- Timestamp:
- 05/03/2023 02:54:34 AM (3 years ago)
- Location:
- code9/trunk
- Files:
-
- 3 edited
-
code9.php (modified) (1 diff)
-
function/code9_security.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
code9/trunk/code9.php
r2907223 r2907229 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.1 26 Version: 1.0.13 7 7 Author: Code9Fair 8 8 Author URI: https://paypal.me/code9fair/ -
code9/trunk/function/code9_security.php
r2907223 r2907229 245 245 246 246 throw new Exception('Wrong server name'); 247 } else if (isset($data_decrypt->remote_ip) !== true /*|| $data_decrypt->remote_ip !== $_SERVER['REMOTE_ADDR']*/) { 247 } 248 /* 249 else if (isset($data_decrypt->remote_ip) !== true || $data_decrypt->remote_ip !== $_SERVER['REMOTE_ADDR']) { 248 250 code9_security_public_unset(); 249 251 250 252 throw new Exception('Wrong security ip'); 251 } else { 253 } 254 */ 255 else { 252 256 if (isset($_SESSION['code9_security_auth_' . $admin_id]) !== true || $_SESSION['code9_security_auth_' . $admin_id] !== $_COOKIE['code9_security_public']) { 253 257 throw new Exception('2step-code9'); -
code9/trunk/readme.txt
r2907223 r2907229 5 5 Requires at least: 4.1 6 6 Tested up to: 6.2 7 Stable tag: 1.0.1 27 Stable tag: 1.0.13 8 8 Requires PHP: 5.6.4 9 9 License: GPLv2 … … 77 77 = 1.0.12 = 78 78 * Fixed force to logout when use Wordpress with Cloudflare. 79 = 1.0.13 = 80 * Fixed bug Wrong security IP.
Note: See TracChangeset
for help on using the changeset viewer.