Headline
CVE-2015-10112: V1.0.2 - Security Fix for _query_arg vulnerability. · wp-plugins/wooframework-branding@f12fccd
A vulnerability classified as problematic has been found in WooFramework Branding Plugin up to 1.0.1 on WordPress. Affected is the function admin_screen_logic of the file wooframework-branding.php. The manipulation of the argument url leads to open redirect. It is possible to launch the attack remotely. Upgrading to version 1.0.2 is able to address this issue. The name of the patch is f12fccd7b5eaf66442346f748c901ef504742f78. It is recommended to upgrade the affected component. The identifier of this vulnerability is VDB-230652.
Expand Up @@ -3,11 +3,11 @@ * Plugin Name: WooFramework Branding * Plugin URI: http://woothemes.com/products/wooframework-branding/ * Description: Well, g’day there! Lets work together to rebrand your copy of the WooFramework using your logo, your icon and your brand name. * Version: 1.0.1 * Version: 1.0.2 * Author: Matty * Author URI: http://woothemes.com/ * Requires at least: 3.9.1 * Tested up to: 3.9.1 * Tested up to: 4.1.1 * * Text Domain: wooframework-branding * Domain Path: /languages/ Expand Down Expand Up @@ -286,7 +286,7 @@ public function admin_screen_logic () { $url = add_query_arg( 'page’, $page ); $url = add_query_arg( 'updated’, 'true’, $url );
wp_safe_redirect( $url ); wp_safe_redirect( esc_url( $url ) ); exit; } } // End admin_screen_logic() Expand Down