Changeset 3105541
- Timestamp:
- 06/21/2024 08:39:38 AM (22 months ago)
- Location:
- wps-hide-login
- Files:
-
- 41 added
- 3 edited
-
tags/1.9.16.4 (added)
-
tags/1.9.16.4/assets (added)
-
tags/1.9.16.4/assets/js (added)
-
tags/1.9.16.4/assets/js/functions.js (added)
-
tags/1.9.16.4/autoload.php (added)
-
tags/1.9.16.4/classes (added)
-
tags/1.9.16.4/classes/plugin.php (added)
-
tags/1.9.16.4/classes/singleton.php (added)
-
tags/1.9.16.4/composer.json (added)
-
tags/1.9.16.4/composer.lock (added)
-
tags/1.9.16.4/languages (added)
-
tags/1.9.16.4/languages/wps-hide-login-cs_CZ.mo (added)
-
tags/1.9.16.4/languages/wps-hide-login-cs_CZ.po (added)
-
tags/1.9.16.4/languages/wps-hide-login-da_DK.mo (added)
-
tags/1.9.16.4/languages/wps-hide-login-da_DK.po (added)
-
tags/1.9.16.4/languages/wps-hide-login-es_ES.mo (added)
-
tags/1.9.16.4/languages/wps-hide-login-es_ES.po (added)
-
tags/1.9.16.4/languages/wps-hide-login-fr_FR.mo (added)
-
tags/1.9.16.4/languages/wps-hide-login-fr_FR.po (added)
-
tags/1.9.16.4/languages/wps-hide-login-it_IT.mo (added)
-
tags/1.9.16.4/languages/wps-hide-login-it_IT.po (added)
-
tags/1.9.16.4/languages/wps-hide-login-ru_RU.mo (added)
-
tags/1.9.16.4/languages/wps-hide-login-ru_RU.po (added)
-
tags/1.9.16.4/languages/wps-hide-login.pot (added)
-
tags/1.9.16.4/readme.txt (added)
-
tags/1.9.16.4/uninstall.php (added)
-
tags/1.9.16.4/vendor (added)
-
tags/1.9.16.4/vendor/autoload.php (added)
-
tags/1.9.16.4/vendor/composer (added)
-
tags/1.9.16.4/vendor/composer/ClassLoader.php (added)
-
tags/1.9.16.4/vendor/composer/InstalledVersions.php (added)
-
tags/1.9.16.4/vendor/composer/LICENSE (added)
-
tags/1.9.16.4/vendor/composer/autoload_classmap.php (added)
-
tags/1.9.16.4/vendor/composer/autoload_namespaces.php (added)
-
tags/1.9.16.4/vendor/composer/autoload_psr4.php (added)
-
tags/1.9.16.4/vendor/composer/autoload_real.php (added)
-
tags/1.9.16.4/vendor/composer/autoload_static.php (added)
-
tags/1.9.16.4/vendor/composer/installed.json (added)
-
tags/1.9.16.4/vendor/composer/installed.php (added)
-
tags/1.9.16.4/vendor/composer/platform_check.php (added)
-
tags/1.9.16.4/wps-hide-login.php (added)
-
trunk/classes/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wps-hide-login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wps-hide-login/trunk/classes/plugin.php
r3102800 r3105541 689 689 global $current_user; 690 690 if ( ! is_user_logged_in() && is_wp_error( wp_authenticate_username_password( null, $current_user->user_login, $_POST['post_password'] ) ) ) { 691 return $origin_url; 692 } 693 } 694 695 if ( ! is_user_logged_in() ) { 696 if ( ( is_plugin_active( 'gravityforms/gravityforms.php' ) || ( is_multisite() && is_plugin_active_for_network( 'gravityforms/gravityforms.php' ) ) ) && isset( $_GET['gf_page'] ) ) { 691 697 return $origin_url; 692 698 } -
wps-hide-login/trunk/readme.txt
r3102804 r3105541 7 7 Tested up to: 6.5 8 8 Requires PHP: 7.0 9 Stable tag: 1.9.16. 39 Stable tag: 1.9.16.4 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 140 140 141 141 == Changelog == 142 143 = 1.9.16.4 = 144 * Fix vulnerability : https://www.sprocketsecurity.com/resources/discovering-wp-admin-urls-in-wordpress-with-gravityforms 142 145 143 146 = 1.9.16.3 = -
wps-hide-login/trunk/wps-hide-login.php
r3102804 r3105541 6 6 Author: WPServeur, NicolasKulka, wpformation 7 7 Author URI: https://wpserveur.net 8 Version: 1.9.16. 38 Version: 1.9.16.4 9 9 Requires at least: 4.1 10 10 Tested up to: 6.5 … … 22 22 23 23 // Plugin constants 24 define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16. 3' );24 define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16.4' ); 25 25 define( 'WPS_HIDE_LOGIN_FOLDER', 'wps-hide-login' ); 26 26
Note: See TracChangeset
for help on using the changeset viewer.