diff --git a/CHANGELOG.md b/CHANGELOG.md index 99296a0c..12a627b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [3.7.3](https://github.com/auth0/wp-auth0/tree/3.7.3) (2019-12-17) +[Full Changelog](https://github.com/auth0/wp-auth0/compare/3.7.1...3.7.3) + +**Fixed** +- Cast user ID to integer to fix reflected XSS + ## [3.7.1](https://github.com/auth0/wp-auth0/tree/3.7.1) (2018-10-08) [Full Changelog](https://github.com/auth0/wp-auth0/compare/3.7.0...3.7.1) diff --git a/WP_Auth0.php b/WP_Auth0.php index aa55746e..886d70ba 100644 --- a/WP_Auth0.php +++ b/WP_Auth0.php @@ -2,12 +2,12 @@ /** * Plugin Name: Login by Auth0 * Description: Login by Auth0 provides improved username/password login, Passwordless login, Social login and Single Sign On for all your sites. - * Version: 3.7.1 + * Version: 3.7.3 * Author: Auth0 * Author URI: https://auth0.com * Text Domain: wp-auth0 */ -define( 'WPA0_VERSION', '3.7.1' ); +define( 'WPA0_VERSION', '3.7.3' ); define( 'AUTH0_DB_VERSION', 19 ); define( 'WPA0_PLUGIN_FILE', __FILE__ ); diff --git a/lib/WP_Auth0_EditProfile.php b/lib/WP_Auth0_EditProfile.php index 527ca5eb..3da52aee 100644 --- a/lib/WP_Auth0_EditProfile.php +++ b/lib/WP_Auth0_EditProfile.php @@ -148,7 +148,7 @@ function DeleteAuth0Data(event) { var data = { 'action': 'auth0_delete_data', - 'user_id': '' + 'user_id': '' }; var successMsg = ""; @@ -191,7 +191,7 @@ function DeleteMFA(event) { var data = { 'action': 'auth0_delete_mfa', - 'user_id': '' + 'user_id': '' }; var successMsg = "";