atwellpub / resend-welcome-email

WordPress plugin that helps quickly regenerate a new passwords & send a new welcome email to a user.
17 stars 15 forks source link

Adding esc_url to address potential security issue #1

Closed sdunham closed 8 years ago

sdunham commented 9 years ago

The send_welcome_email_url() function doesn't use esc_url() on the output of add_query_arg(), which is the suggested fix for plugins which were affected by the WP 4.1.2 Security Release. You do pass it to wp_nonce_url(), which uses esc_html(). But this may not be enough to address the security issue.

See this post for details: https://blog.sucuri.net/2015/04/security-advisory-xss-vulnerability-affecting-multiple-wordpress-plugins.html

atwellpub commented 8 years ago

Thank you