Plugin Directory

Changeset 3105541


Ignore:
Timestamp:
06/21/2024 08:39:38 AM (22 months ago)
Author:
NicolasKulka
Message:
Location:
wps-hide-login
Files:
41 added
3 edited

Legend:

Unmodified
Added
Removed
  • wps-hide-login/trunk/classes/plugin.php

    r3102800 r3105541  
    689689            global $current_user;
    690690            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'] ) ) {
    691697                return $origin_url;
    692698            }
  • wps-hide-login/trunk/readme.txt

    r3102804 r3105541  
    77Tested up to: 6.5
    88Requires PHP: 7.0
    9 Stable tag: 1.9.16.3
     9Stable tag: 1.9.16.4
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141== Changelog ==
     142
     143= 1.9.16.4 =
     144* Fix vulnerability : https://www.sprocketsecurity.com/resources/discovering-wp-admin-urls-in-wordpress-with-gravityforms
    142145
    143146= 1.9.16.3 =
  • wps-hide-login/trunk/wps-hide-login.php

    r3102804 r3105541  
    66Author: WPServeur, NicolasKulka, wpformation
    77Author URI: https://wpserveur.net
    8 Version: 1.9.16.3
     8Version: 1.9.16.4
    99Requires at least: 4.1
    1010Tested up to: 6.5
     
    2222
    2323// Plugin constants
    24 define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16.3' );
     24define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16.4' );
    2525define( 'WPS_HIDE_LOGIN_FOLDER', 'wps-hide-login' );
    2626
Note: See TracChangeset for help on using the changeset viewer.