XSS vulnerability fix
-
Hello.
Here’s the fix for a possible XSS vulnerability in this plugin:
Change line 776 from:
$response = wp_remote_get( add_query_arg( $api_params, PLUGIN_OVEN_URL ), array( 'timeout' => 15, 'sslverify' => false ) );
to:
$response = wp_remote_get( esc_url_raw( add_query_arg( $api_params, PLUGIN_OVEN_URL ) ), array( 'timeout' => 15, 'sslverify' => false ) );
It’s working for me. Any chances of it being on the next update?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘XSS vulnerability fix’ is closed to new replies.